Explorar o código

Excluding CMSIS test for MP1 in actions

Julien JEMINE %!s(int64=3) %!d(string=hai) anos
pai
achega
11f1d02adc
Modificáronse 1 ficheiros con 3 adicións e 0 borrados
  1. 3 0
      .github/workflows/cmake.yml

+ 3 - 0
.github/workflows/cmake.yml

@@ -35,16 +35,19 @@ jobs:
 
     - name: Create build directory for tests/cmsis
       run: cmake -E make_directory ${{runner.workspace}}/tests/cmsis/build
+      if: ${{ matrix.family != 'MP1' }}
 
     - name: Configure tests/cmsis
       shell: bash
       working-directory: ${{runner.workspace}}/tests/cmsis/build
       run: cmake -DTEST_FAMILIES=${{ matrix.family }} -DFETCH_ST_SOURCES=TRUE $GITHUB_WORKSPACE/tests/cmsis/
+      if: ${{ matrix.family != 'MP1' }}
 
     - name: Build tests/cmsis
       working-directory: ${{runner.workspace}}/tests/cmsis/build
       shell: bash
       run: cmake --build . --config $BUILD_TYPE
+      if: ${{ matrix.family != 'MP1' }}
 
     - name: Create build directory for tests/hal
       run: cmake -E make_directory ${{runner.workspace}}/tests/hal/build