Skip to content

Commit

Permalink
tweast stateless-tests-standalone
Browse files Browse the repository at this point in the history
  • Loading branch information
dantengsky committed Nov 1, 2021
1 parent 5daa9a1 commit daf408f
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/stateless-tests-standalone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
CARGO_INCREMENTAL: '0'

- name: Minio Setup for (ubuntu-latest only)
#if: matrix.config.os == 'ubuntu-latest'
if: matrix.config.os == 'ubuntu-latest'
run: |
docker run -d -p 9000:9000 --name minio \
-e "MINIO_ACCESS_KEY=minioadmin" \
Expand All @@ -58,7 +58,7 @@ jobs:
aws --endpoint-url http://127.0.0.1:9000/ s3 mb s3://testbucket
- name: Run Stateless Tests with Standalone mode
- name: Run Stateless Tests with Standalone mode (ubuntu-latest only)
if: matrix.config.os == 'ubuntu-latest'
run: |
export STORAGE_TYPE=s3
Expand All @@ -68,3 +68,8 @@ jobs:
export S3_STORAGE_ACCESS_KEY_ID=minioadmin
export S3_STORAGE_SECRET_ACCESS_KEY=minioadmin
bash ./scripts/ci/ci-run-stateless-tests-standalone.sh
- name: Run Stateless Tests with Standalone mode
if: matrix.config.os != 'ubuntu-latest'
run: |
bash ./scripts/ci/ci-run-stateless-tests-standalone.sh

0 comments on commit daf408f

Please sign in to comment.