diff --git a/.github/actions/build-windows-artifacts/action.yml b/.github/actions/build-windows-artifacts/action.yml index 05eb7249afb2..122d490de3f8 100644 --- a/.github/actions/build-windows-artifacts/action.yml +++ b/.github/actions/build-windows-artifacts/action.yml @@ -65,7 +65,7 @@ runs: uses: actions/upload-artifact@v4 with: name: sqlness-logs - path: ${{ runner.temp }}/greptime-*.log + path: /tmp/greptime-*.log retention-days: 3 - name: Build greptime binary diff --git a/.github/workflows/develop.yml b/.github/workflows/develop.yml index 45ace7dbb7cf..b91f370030f5 100644 --- a/.github/workflows/develop.yml +++ b/.github/workflows/develop.yml @@ -136,13 +136,12 @@ jobs: run: tar -xvf ./bins.tar.gz - name: Run sqlness run: RUST_BACKTRACE=1 ./bins/sqlness-runner -c ./tests/cases --bins-dir ./bins - # FIXME: Logs cannot found be on failure (or even success). Need to figure out the cause. - name: Upload sqlness logs if: always() uses: actions/upload-artifact@v4 with: name: sqlness-logs - path: ${{ runner.temp }}/greptime-*.log + path: /tmp/greptime-*.log retention-days: 3 sqlness-kafka-wal: @@ -167,13 +166,12 @@ jobs: run: docker compose -f docker-compose-standalone.yml up -d --wait - name: Run sqlness run: RUST_BACKTRACE=1 ./bins/sqlness-runner -w kafka -k 127.0.0.1:9092 -c ./tests/cases --bins-dir ./bins - # FIXME: Logs cannot be found on failure (or even success). Need to figure out the cause. - name: Upload sqlness logs if: always() uses: actions/upload-artifact@v4 with: name: sqlness-logs-with-kafka-wal - path: ${{ runner.temp }}/greptime-*.log + path: /tmp/greptime-*.log retention-days: 3 fmt: diff --git a/.github/workflows/nightly-ci.yml b/.github/workflows/nightly-ci.yml index 88a8bc224ae6..b7e475a7f6a6 100644 --- a/.github/workflows/nightly-ci.yml +++ b/.github/workflows/nightly-ci.yml @@ -48,7 +48,7 @@ jobs: uses: actions/upload-artifact@v4 with: name: sqlness-logs - path: ${{ runner.temp }}/greptime-*.log + path: /tmp/greptime-*.log retention-days: 3 test-on-windows: