Merged in feature/s3integration (pull request #47)

Set Up S3 integration

* cfginterfaceandfirsts3funcs

* addlocalstack

* generallypassesfullsuite

* addedmultipleattemptedpings

* cleanup

* stabiliseplusskip
This commit is contained in:
Michael McGuinness
2025-02-05 12:52:41 +00:00
parent 9254b91d45
commit 92334ad1dd
838 changed files with 139249 additions and 6671 deletions
+16 -2
View File
@@ -4,7 +4,21 @@ all: build
init:
git submodule update --init --recursive
.PHONY: build
build:
.PHONY: update-submodule
update-submodule: init
# Fetch the latest tags
cd swagger-ui && git fetch --tags
# Get the latest tag
$(eval LATEST_TAG := $(shell cd swagger-ui && git describe --tags `git rev-list --tags --max-count=1`))
@echo "Latest tag for swagger-ui: $(LATEST_TAG)"
# Checkout the latest tag
cd swagger-ui && git checkout $(LATEST_TAG)
@echo "Updated submodule swagger-ui to latest tag: ${LATEST_TAG}"
.PHONY: clean
clean:
rm -rf dist/*
.PHONY: build
build: clean
cp -r swagger-ui/dist/* dist/