diff --git a/.github/workflows/build_executables.yml b/.github/workflows/build_executables.yml index aa15350b..28eb8515 100644 --- a/.github/workflows/build_executables.yml +++ b/.github/workflows/build_executables.yml @@ -14,7 +14,6 @@ jobs: matrix: os: [ubuntu-latest] arch: [arm64-v8a] - kind: [static] confs: - { mode: debug, archive: yes } @@ -57,7 +56,7 @@ jobs: # Setup compilation mode and install project dependencies - name: Configure xmake and install dependencies working-directory: ./app/rpi - run: xmake config --arch=${{ matrix.arch }} --mode=${{ matrix.confs.mode }} --static=${{ matrix.kind == 'static' && 'yes' || 'no' }} ${{ matrix.confs.config }} --ccache=n --ffmpeg=y --shadernodes=y --tests=y --unitybuild=y --yes + run: xmake config --arch=${{ matrix.arch }} --mode=${{ matrix.confs.mode }} ${{ matrix.confs.config }} --ccache=n --ffmpeg=y --shadernodes=y --tests=y --unitybuild=y --yes - name: Save cached xmake dependencies if: ${{ !steps.restore-depcache.outputs.cache-hit }}