workflow update

This commit is contained in:
Detanup01 2024-05-20 13:13:44 +02:00 committed by otavepto
parent 8be91bf23a
commit ebc83df21e
2 changed files with 4 additions and 4 deletions

View File

@ -90,7 +90,7 @@ jobs:
### build target(s)
- name: Build target(s)
shell: bash
working-directory: ${{ github.workspace }}/GBE_Build
working-directory: ${{ github.workspace }}/build/project/gmake/linux
run: |
echo "dry run..."
CC=clang CXX=clang++ make -n -j 2 config=${{ matrix.cfg }}_${{ matrix.arch }} ${{ matrix.prj }}
@ -102,7 +102,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: "emu-linux-${{ matrix.prj }}-${{ matrix.cfg }}-${{ matrix.arch }}-${{ github.sha }}"
path: "bin/"
path: "build/linux/gmake/"
if-no-files-found: 'error'
compression-level: 9
retention-days: 1

View File

@ -87,7 +87,7 @@ jobs:
### build target(s)
- name: Build target(s)
shell: cmd
working-directory: ${{ github.workspace }}/GBE_Build
working-directory: ${{ github.workspace }}/build/project/vs2022/win
run: |
msbuild /nologo /target:${{ matrix.prj }} /m:2 /v:d /p:Configuration=${{ matrix.cfg }},Platform=${{ matrix.arch }} GBE.sln
@ -96,7 +96,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: "emu-win-${{ matrix.prj }}-${{ matrix.cfg }}-${{ matrix.arch }}-${{ github.sha }}"
path: "bin/"
path: "build/win/vs2022/"
if-no-files-found: 'error'
compression-level: 9
retention-days: 1