Skip to content

Commit

Permalink
ci: allow build with warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
hrls committed Oct 4, 2024
1 parent 53bb441 commit 727bd47
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/release-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,11 @@ jobs:
components: rust-src

- uses: actions/checkout@v4
- run: cargo build --locked --release

- id: build
env:
RUSTFLAGS: --allow warnings
run: cargo build --locked --release

- id: artifact
env:
Expand Down Expand Up @@ -80,7 +84,11 @@ jobs:
components: rust-src

- uses: actions/checkout@v4
- run: cargo build --locked --release

- id: build
env:
RUSTFLAGS: --allow warnings
run: cargo build --locked --release

- id: artifact
env:
Expand Down

0 comments on commit 727bd47

Please sign in to comment.