From f0dc42eadf65e9c59f65a482b7d5c7b8f5563a9b Mon Sep 17 00:00:00 2001 From: Hiroyuki OYAMA Date: Thu, 13 Jun 2024 13:19:54 +0900 Subject: [PATCH] Change CI build targets --- .github/workflows/cmake-ubuntu.yml | 2 +- .github/workflows/cmake-windows.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cmake-ubuntu.yml b/.github/workflows/cmake-ubuntu.yml index 725cea3..52b7f82 100644 --- a/.github/workflows/cmake-ubuntu.yml +++ b/.github/workflows/cmake-ubuntu.yml @@ -51,4 +51,4 @@ jobs: - name: Build working-directory: ${{github.workspace}}/pico-vfs/build shell: bash - run: cmake --build . --target tests --config $BUILD_TYPE + run: cmake --build . --target integration --config $BUILD_TYPE diff --git a/.github/workflows/cmake-windows.yml b/.github/workflows/cmake-windows.yml index c45b93d..435d7f0 100644 --- a/.github/workflows/cmake-windows.yml +++ b/.github/workflows/cmake-windows.yml @@ -48,4 +48,4 @@ jobs: mkdir build cd build cmake .. -G Ninja -DPICO_SDK_PATH=../../pico-sdk -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DPICO_BOARD=pico - cmake --build . --target tests + cmake --build . --target integration