.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: jobs:
build: build:
strategy: strategy:
fail-fast: false
matrix: matrix:
arch: arch:
- x86_64 - x86_64

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

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

Loading…
Cancel
Save