GHA: Cleanup single target jobs

This commit is contained in:
Henrik Tjäder 2022-02-09 18:45:31 +01:00
parent 0f903f60bd
commit b42abe1b4f

View file

@ -189,21 +189,15 @@ jobs:
testmacros: testmacros:
name: testmacros name: testmacros
runs-on: ubuntu-20.04 runs-on: ubuntu-20.04
strategy:
matrix:
target:
- x86_64-unknown-linux-gnu
toolchain:
- stable
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v2 uses: actions/checkout@v2
- name: Install Rust ${{ matrix.toolchain }} with target (${{ matrix.target }}) - name: Install Rust
uses: actions-rs/toolchain@v1 uses: actions-rs/toolchain@v1
with: with:
toolchain: ${{ matrix.toolchain }} toolchain: stable
target: ${{ matrix.target }} target: x86_64-unknown-linux-gnu
override: true override: true
- name: Cache Dependencies - name: Cache Dependencies
@ -217,18 +211,12 @@ jobs:
with: with:
use-cross: false use-cross: false
command: test command: test
args: --manifest-path macros/Cargo.toml --target=${{ matrix.target }} args: --manifest-path macros/Cargo.toml
# Run test suite for thumbv7m # Run test suite
tests: tests:
name: tests name: tests
runs-on: ubuntu-20.04 runs-on: ubuntu-20.04
strategy:
matrix:
target:
- x86_64-unknown-linux-gnu
toolchain:
- stable
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v2 uses: actions/checkout@v2
@ -236,8 +224,8 @@ jobs:
- name: Install Rust - name: Install Rust
uses: actions-rs/toolchain@v1 uses: actions-rs/toolchain@v1
with: with:
toolchain: ${{ matrix.toolchain }} toolchain: stable
target: ${{ matrix.target }} target: x86_64-unknown-linux-gnu
override: true override: true
- name: Cache Dependencies - name: Cache Dependencies
@ -250,13 +238,12 @@ jobs:
with: with:
use-cross: false use-cross: false
command: test command: test
args: --test tests --target=${{ matrix.target }} args: --test tests
# Build documentation, check links # Build documentation, check links
docs: docs:
name: docs name: docs
runs-on: ubuntu-20.04 runs-on: ubuntu-20.04
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v2 uses: actions/checkout@v2