Don't run tests in release workflow (#1080)

This commit is contained in:
Casey Rodarmor 2022-01-30 12:37:15 -08:00 committed by GitHub
parent b95e32c9be
commit 57db9fe04d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 10 deletions

View File

@ -1,4 +1,4 @@
name: Test
name: CI
on:
pull_request:

View File

@ -24,23 +24,18 @@ jobs:
include:
- target: aarch64-unknown-linux-musl
os: ubuntu-latest
native: false
target_rustflags: '--codegen linker=aarch64-linux-gnu-gcc'
- target: armv7-unknown-linux-musleabihf
os: ubuntu-latest
native: false
target_rustflags: '--codegen linker=arm-linux-gnueabihf-gcc'
- target: x86_64-apple-darwin
os: macos-latest
native: true
target_rustflags: ''
- target: x86_64-pc-windows-msvc
os: windows-2016
native: true
target_rustflags: ''
- target: x86_64-unknown-linux-musl
os: ubuntu-latest
native: true
target_rustflags: ''
runs-on: ${{matrix.os}}
@ -67,10 +62,6 @@ jobs:
sudo apt-get update
sudo apt-get install gcc-arm-linux-gnueabihf
- name: Test
if: matrix.native
run: cargo test --all --target ${{ matrix.target }}
- name: Ref Type
id: ref-type
run: cargo run --package ref-type -- --reference ${{ github.ref }}