Skip to content

Commit

Permalink
Experiment with fake-gcs-server
Browse files Browse the repository at this point in the history
References #711.
  • Loading branch information
gaul committed Dec 25, 2024
1 parent cb267ee commit f290a67
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/ci-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,16 @@ jobs:
mvn test -Ds3proxy.test.conf=s3proxy-minio.conf -Dtest=AwsSdkTest
kill $(pidof minio)
- name: Install fake-gcs-server
run: go install github.com/gaul/fake-gcs-server@latest
- name: Start fake-gcs-server
run: $HOME/go/bin/fake-gcs-server -backend memory -scheme http -host 127.0.0.1 &
- name: Maven Test with fake-gcs-server
run: |
# TODO: this fails because the credentials are wrong
# TODO: run other test classes
mvn test -Ds3proxy.test.conf=s3proxy-fake-gcs-server.conf -Dtest=AwsSdkTest
- name: Install s3-tests
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit f290a67

Please sign in to comment.