aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Henrik Tjäder <henrik@tjaders.com> 2020-09-01 14:38:25 +0000
committerGravatar Henrik Tjäder <henrik@tjaders.com> 2020-09-01 14:50:06 +0000
commitfea6d2facfc871111cef64e906bd74e3b6b66aef (patch)
tree56e852d37802aca694a1019dd1512806b1cc96e9
parent26f19ae771f9eaa5e205b448b9a4f0299d8cad8e (diff)
downloadrtic-fea6d2facfc871111cef64e906bd74e3b6b66aef.tar.gz
rtic-fea6d2facfc871111cef64e906bd74e3b6b66aef.tar.zst
rtic-fea6d2facfc871111cef64e906bd74e3b6b66aef.zip
Remove the multicore tests
-rw-r--r--.github/workflows/build.yml54
1 files changed, 0 insertions, 54 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 7a076d9d..8df63d09 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