From 26f19ae771f9eaa5e205b448b9a4f0299d8cad8e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Tj=C3=A4der?= Date: Tue, 1 Sep 2020 14:33:31 +0000 Subject: Do not test homogeneous multicore --- .github/workflows/build.yml | 7 ------- 1 file changed, 7 deletions(-) (limited to '.github/workflows') diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0ec72bb..7a076d9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -156,13 +156,6 @@ jobs: command: check args: --examples --target=${{ matrix.target }} --features __min_r1_43 - - name: cargo check -p homogeneous - uses: actions-rs/cargo@v1 - with: - use-cross: false - command: check - args: -p homogeneous --examples --target=${{ matrix.target }} - # Use precompiled binutils - name: cargo install cargo-binutils uses: actions-rs/install@v0.1 -- cgit v1.2.3 From fea6d2facfc871111cef64e906bd74e3b6b66aef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Tj=C3=A4der?= Date: Tue, 1 Sep 2020 14:38:25 +0000 Subject: Remove the multicore tests --- .github/workflows/build.yml | 54 --------------------------------------------- 1 file changed, 54 deletions(-) (limited to '.github/workflows') diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7a076d9..8df63d0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -474,57 +474,6 @@ jobs: command: test args: --test single - # Verify all multicore examples - checkmulticore: - name: checkmulticore - runs-on: ubuntu-20.04 - strategy: - matrix: - target: - - x86_64-unknown-linux-gnu - toolchain: - - nightly - steps: - - name: Checkout - uses: actions/checkout@v2 - - - name: Install Rust ${{ matrix.toolchain }} with x86_64-unknown-linux-gnu - uses: actions-rs/toolchain@v1 - with: - toolchain: ${{ matrix.toolchain }} - target: x86_64-unknown-linux-gnu - override: true - - name: Install Rust ${{ matrix.toolchain }} with thumbv7m-none-eabi - uses: actions-rs/toolchain@v1 - with: - toolchain: ${{ matrix.toolchain }} - target: thumbv7m-none-eabi - override: true - - name: Install Rust ${{ matrix.toolchain }} with thumbv6m-none-eabi - uses: actions-rs/toolchain@v1 - with: - toolchain: ${{ matrix.toolchain }} - target: thumbv6m-none-eabi - override: true - - uses: actions-rs/cargo@v1 - with: - command: install - args: microamp-tools --version 0.1.0-alpha.3 - - - name: Check multi-core examples - run: | - cd heterogeneous - exs=( - smallest - x-init-2 - x-init - x-schedule - x-spawn - ) - for ex in ${exs[@]}; do - cargo-microamp --example=$ex --target thumbv7m-none-eabi,thumbv6m-none-eabi --check - done - # Build documentation, check links docs: name: docs @@ -654,7 +603,6 @@ jobs: - checkmacros - testv7 - testv6 - - checkmulticore - docs - mdbook # Only run this when pushing to master branch @@ -758,7 +706,6 @@ jobs: - checkmacros - testv7 - testv6 - - checkmulticore - docs - mdbook runs-on: ubuntu-20.04 @@ -775,7 +722,6 @@ jobs: - checkmacros - testv7 - testv6 - - checkmulticore - docs - mdbook runs-on: ubuntu-20.04 -- cgit v1.2.3