From 6aa6a8acf0756868309a0239ad7a524aeef55f41 Mon Sep 17 00:00:00 2001 From: Julien Cretin Date: Wed, 9 Jun 2021 15:10:30 +0200 Subject: [PATCH] Only build and test nightly Prod is already built by opensk test. --- .github/workflows/persistent_store_test.yml | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/.github/workflows/persistent_store_test.yml b/.github/workflows/persistent_store_test.yml index 8666221..c40d262 100644 --- a/.github/workflows/persistent_store_test.yml +++ b/.github/workflows/persistent_store_test.yml @@ -12,33 +12,20 @@ jobs: runs-on: ubuntu-18.04 steps: - uses: actions/checkout@v2 - with: - submodules: true - - - uses: actions-rs/toolchain@v1 - with: - target: thumbv7em-none-eabi - uses: actions-rs/toolchain@v1 with: toolchain: nightly - - - name: Build Persistent store library - uses: actions-rs/cargo@v1 - with: - command: build - args: --manifest-path libraries/persistent_store/Cargo.toml --release --target=thumbv7em-none-eabi + override: true - name: Unit testing of Persistent store library (release mode) uses: actions-rs/cargo@v1 with: - toolchain: nightly command: test args: --manifest-path libraries/persistent_store/Cargo.toml --release --features=std - name: Unit testing of Persistent store library (debug mode) uses: actions-rs/cargo@v1 with: - toolchain: nightly command: test args: --manifest-path libraries/persistent_store/Cargo.toml --features=std