Skip to content

Commit 1869e5b

Browse files
committed
Skip sleep if we build after setting up server
1 parent 8e95da4 commit 1869e5b

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.github/workflows/IntegrationTests.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
uses: hendrikmuhs/ccache-action@main
4646
with:
4747
key: ${{ github.job }}
48-
save: ${{ github.ref == 'refs/heads/main' || github.repository != 'duckdb/duckdb' }}
48+
save: ${{ github.ref == 'refs/heads/main' || github.repository != 'duckdb/duckdb-httpfs' }}
4949

5050
- name: Setup vcpkg
5151
uses: lukka/[email protected]
@@ -70,18 +70,17 @@ jobs:
7070
cd $PYTHON_HTTP_SERVER_DIR
7171
python3 -m http.server 8008 &
7272
73-
- name: Build
74-
shell: bash
75-
run: make
76-
7773
- name: Start test server
7874
shell: bash
7975
run: |
8076
sudo ./scripts/install_s3_test_server.sh
8177
./scripts/generate_presigned_url.sh
8278
source ./scripts/run_s3_test_server.sh
8379
source ./scripts/set_s3_test_server_variables.sh
84-
sleep 60
80+
81+
- name: Build
82+
shell: bash
83+
run: make
8584

8685
- name: Run tests
8786
shell: bash

0 commit comments

Comments
 (0)