Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

env:
# These dummy credentials are necessary for running tests against
# localstack s3 service
# floci s3 service
AWS_ACCESS_KEY_ID: foo
AWS_SECRET_ACCESS_KEY: bar
jobs:
Expand All @@ -31,8 +31,7 @@ jobs:
run: |
# Start mock s3 service
make s3-bg
while ! curl http://localhost:4572; do sleep 1; done
sleep 5
sleep 1
# Set up fixture S3 files
make fixture
make cover # run test with coverage
Expand Down
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

LOCALSTACK_VERSION = 4.12.0
FLOCI_VERSION = 1.5.28

.PHONY: test
test:
Expand All @@ -24,11 +24,11 @@ cover:

.PHONY: s3
s3:
docker run -p 4572:4566 -e SERVICES=s3 localstack/localstack:$(LOCALSTACK_VERSION)
docker run -p 4572:4566 -e SERVICES=s3 floci/floci:$(FLOCI_VERSION)

.PHONY: s3-bg
s3-bg:
docker run -d -p 4572:4566 -e SERVICES=s3 localstack/localstack:$(LOCALSTACK_VERSION)
docker run -d -p 4572:4566 -e SERVICES=s3 floci/floci:$(FLOCI_VERSION)

.PHONY: fixture
fixture:
Expand Down
4 changes: 2 additions & 2 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
"/^Makefile$/"
],
"matchStrings": [
"LOCALSTACK_VERSION\\s*=\\s*(?<currentValue>.*)"
"FLOCI_VERSION\\s*=\\s*(?<currentValue>.*)"
],
"datasourceTemplate": "docker",
"depNameTemplate": "localstack/localstack",
"depNameTemplate": "floci/floci",
"versioningTemplate": "docker"
}
],
Expand Down
Loading