Skip to content

Commit

Permalink
CI: + mount fuzzer logs, - check sccache stats (#3537)
Browse files Browse the repository at this point in the history
  • Loading branch information
kvs96 authored Nov 28, 2023
1 parent 621a012 commit fd86453
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -178,8 +178,6 @@ jobs:
with:
path: artifact

- run: sccache --show-stats

win-cross:
runs-on: [kuberunner, github-runner-03]
env:
Expand Down
9 changes: 7 additions & 2 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,6 @@ jobs:
- name: "Check: Compiling gstd on stable"
run: cargo +stable check -p gstd

- run: sccache --show-stats

fuzzer:
runs-on: [kuberunner, github-runner-01]
env:
Expand All @@ -78,6 +76,13 @@ jobs:
- name: "ACTIONS: Checkout"
uses: actions/checkout@v4

- name: "MOUNT: Logs path"
run: |
FUZZER_LOGS_PATH=/mnt/fuzzer_logs
sudo mkdir -p $FUZZER_LOGS_PATH
sudo ln -s $FUZZER_LOGS_PATH/artifacts $PWD/utils/runtime-fuzzer/fuzz/artifacts
sudo ln -s $FUZZER_LOGS_PATH/proptest-regressions $PWD/utils/runtime-fuzzer/proptest-regressions
- name: "Install: Set cargo path"
run: echo "/tmp/cargo/bin" >> $GITHUB_PATH

Expand Down

0 comments on commit fd86453

Please sign in to comment.