Skip to content

Commit

Permalink
Try and reenable if
Browse files Browse the repository at this point in the history
  • Loading branch information
multiplemonomials committed Sep 22, 2024
1 parent d8ba346 commit beec7ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/greentea_cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,14 +142,14 @@ jobs:
apt-get install -y python3-venv
- name: Build ${{ matrix.target }} with baremetal profile
#if: ${{ maxtrix.baremetal == 1 }}
if: ${{ matrix.baremetal == 1 }}
run: |
rm -rf __build
cmake -S . -B __build -GNinja -DCMAKE_CTEST_ARGUMENTS="--output-on-failure;-V" -DMBED_BUILD_GREENTEA_TESTS=ON -DMBED_GREENTEA_TEST_BAREMETAL=ON -DMBED_GREENTEA_SERIAL_PORT=/dev/ttyDUMMY -DMBED_TARGET=${{ matrix.target }} -DMBED_APP_JSON_PATH=TESTS/configs/baremetal.json
cmake --build __build
- name: Build ${{ matrix.target }} with full profile
#if: ${{ maxtrix.baremetal == 0 }}
if: ${{ matrix.baremetal == 0 }}
run: |
rm -rf __build
cmake -S . -B __build -GNinja -DCMAKE_CTEST_ARGUMENTS="--output-on-failure;-V" -DMBED_BUILD_GREENTEA_TESTS=ON -DMBED_GREENTEA_SERIAL_PORT=/dev/ttyDUMMY -DMBED_TARGET=${{ matrix.target }}
Expand Down

0 comments on commit beec7ea

Please sign in to comment.