Skip to content

Commit 1b1c789

Browse files
committed
Experiment with fake-gcs-server
References #711.
1 parent cb267ee commit 1b1c789

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/ci-main.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,16 @@ jobs:
110110
mvn test -Ds3proxy.test.conf=s3proxy-minio.conf -Dtest=AwsSdkTest
111111
kill $(pidof minio)
112112
113+
- name: Install fake-gcs-server
114+
run: go install github.com/fsouza/fake-gcs-server@latest
115+
- name: Start fake-gcs-server
116+
run: $HOME/go/bin/fake-gcs-server -backend memory -scheme http -host 127.0.0.1 &
117+
- name: Maven Test with fake-gcs-server
118+
run: |
119+
# TODO: this fails because the credentials are wrong
120+
# TODO: run other test classes
121+
mvn test -Ds3proxy.test.conf=s3proxy-fake-gcs-server.conf -Dtest=AwsSdkTest
122+
113123
- name: Install s3-tests
114124
run: |
115125
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)