Skip to content

Commit

Permalink
Don't run tests in release workflow (#1080)
Browse files Browse the repository at this point in the history
  • Loading branch information
casey authored Jan 30, 2022
1 parent b95e32c commit 57db9fe
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml → .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Test
name: CI

on:
pull_request:
Expand Down
9 changes: 0 additions & 9 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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}}
Expand All @@ -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 }}
Expand Down

0 comments on commit 57db9fe

Please sign in to comment.