Skip to content

Commit db697fc

Browse files
committed
Disable fuzz job
1 parent 9c93edf commit db697fc

File tree

1 file changed

+32
-31
lines changed

1 file changed

+32
-31
lines changed

.github/workflows/program.yml

Lines changed: 32 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -122,34 +122,35 @@ jobs:
122122
working-directory: stable-swap-program
123123
run: nix shell ../#ci --command ./do.sh e2e-test
124124

125-
fuzz:
126-
runs-on: ubuntu-latest
127-
128-
steps:
129-
- uses: actions/checkout@v2
130-
# Install Rust
131-
- name: Install Rust
132-
uses: actions-rs/toolchain@v1
133-
with:
134-
override: true
135-
profile: minimal
136-
toolchain: nightly-2022-02-01
137-
- name: Cache dependencies
138-
uses: Swatinem/rust-cache@v1
139-
140-
# Install Cachix
141-
- uses: cachix/install-nix-action@v16
142-
- name: Setup Cachix
143-
uses: cachix/cachix-action@v10
144-
with:
145-
name: saber
146-
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }}
147-
148-
- name: Build
149-
run: nix shell .#ci --command cargo fuzz build --dev fuzz_test
150-
env:
151-
RUSTFLAGS: "-Znew-llvm-pass-manager=no"
152-
- name: Run fuzz test
153-
run: nix shell .#ci --command cargo fuzz run --dev fuzz_test -- -max_total_time=180
154-
env:
155-
RUSTFLAGS: "-Znew-llvm-pass-manager=no"
125+
## FIXME(michael): ERROR: no interesting inputs were found. Is the code instrumented for coverage? Exiting.
126+
## fuzz:
127+
## runs-on: ubuntu-latest
128+
129+
## steps:
130+
## - uses: actions/checkout@v2
131+
## # Install Rust
132+
## - name: Install Rust
133+
## uses: actions-rs/toolchain@v1
134+
## with:
135+
## override: true
136+
## profile: minimal
137+
## toolchain: nightly-2022-02-01
138+
## - name: Cache dependencies
139+
## uses: Swatinem/rust-cache@v1
140+
141+
## # Install Cachix
142+
## - uses: cachix/install-nix-action@v16
143+
## - name: Setup Cachix
144+
## uses: cachix/cachix-action@v10
145+
## with:
146+
## name: saber
147+
## authToken: ${{ secrets.CACHIX_AUTH_TOKEN }}
148+
149+
## - name: Build
150+
## run: nix shell .#ci --command cargo fuzz build --dev fuzz_test
151+
## env:
152+
## RUSTFLAGS: "-Znew-llvm-pass-manager=no"
153+
## - name: Run fuzz test
154+
## run: nix shell .#ci --command cargo fuzz run --dev fuzz_test -- -max_total_time=180
155+
## env:
156+
## RUSTFLAGS: "-Znew-llvm-pass-manager=no"

0 commit comments

Comments
 (0)