.github: fail-fast: false

pull/650/head
Tamir Duberstein 1 year ago
parent 464fb54b25
commit dc38b7eff0
No known key found for this signature in database

@ -16,6 +16,7 @@ env:
jobs:
build:
strategy:
fail-fast: false
matrix:
arch:
- x86_64

@ -16,6 +16,7 @@ env:
jobs:
build-test:
strategy:
fail-fast: false
matrix:
arch:
- x86_64-unknown-linux-gnu
@ -39,10 +40,9 @@ jobs:
run: cargo install cross --git https://github.com/cross-rs/cross
- name: Build
run: cross build --verbose --target ${{matrix.arch}}
run: cross build --verbose --target ${{ matrix.arch }}
- name: Run test
env:
RUST_BACKTRACE: full
run: |
cross test --verbose --target ${{matrix.arch}}
run: cross test --verbose --target ${{ matrix.arch }}

@ -29,6 +29,6 @@ jobs:
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
body: ${{steps.github_release.outputs.changelog}}
body: ${{ steps.github_release.outputs.changelog }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Loading…
Cancel
Save