From 20bc0acb16548e1a868832c3946c66ace458330f Mon Sep 17 00:00:00 2001 From: toast2903 <22451773+lat9nq@users.noreply.github.com> Date: Mon, 19 Jun 2023 15:16:37 -0400 Subject: [PATCH] workflows: Build x80e target x80e was removed from the `all` target and was no longer building. Workflows should be specifying what target to build, anyway. --- .github/workflows/cmake.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index fcb0dda..048c890 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -31,7 +31,7 @@ jobs: - name: Build # Build your program with the given configuration - run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} + run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --target x80e - name: Package run: |