Skip to content

Commit daf408f

Browse files
committed
tweast stateless-tests-standalone
1 parent 5daa9a1 commit daf408f

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/stateless-tests-standalone.yml

+7-2
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
CARGO_INCREMENTAL: '0'
4444

4545
- name: Minio Setup for (ubuntu-latest only)
46-
#if: matrix.config.os == 'ubuntu-latest'
46+
if: matrix.config.os == 'ubuntu-latest'
4747
run: |
4848
docker run -d -p 9000:9000 --name minio \
4949
-e "MINIO_ACCESS_KEY=minioadmin" \
@@ -58,7 +58,7 @@ jobs:
5858
5959
aws --endpoint-url http://127.0.0.1:9000/ s3 mb s3://testbucket
6060
61-
- name: Run Stateless Tests with Standalone mode
61+
- name: Run Stateless Tests with Standalone mode (ubuntu-latest only)
6262
if: matrix.config.os == 'ubuntu-latest'
6363
run: |
6464
export STORAGE_TYPE=s3
@@ -68,3 +68,8 @@ jobs:
6868
export S3_STORAGE_ACCESS_KEY_ID=minioadmin
6969
export S3_STORAGE_SECRET_ACCESS_KEY=minioadmin
7070
bash ./scripts/ci/ci-run-stateless-tests-standalone.sh
71+
72+
- name: Run Stateless Tests with Standalone mode
73+
if: matrix.config.os != 'ubuntu-latest'
74+
run: |
75+
bash ./scripts/ci/ci-run-stateless-tests-standalone.sh

0 commit comments

Comments
 (0)