Merge pull request #3 from Laupetin/feature/artifact-upload

Upload artifacts after ci
This commit is contained in:
Jan 2023-06-18 15:43:23 +02:00 committed by GitHub
commit dd1114dd3d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 1 deletions

View File

@ -46,6 +46,12 @@ jobs:
./ParserTests
./ZoneCodeGeneratorLibTests
./ZoneCommonTests
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: oat-linux
path: |
${{ github.workspace }}/build/bin/Release_x86
build-test-windows:
env:
@ -80,4 +86,10 @@ jobs:
./ObjLoadingTests
./ParserTests
./ZoneCodeGeneratorLibTests
./ZoneCommonTests
./ZoneCommonTests
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: oat-windows
path: |
${{ github.workspace }}/build/bin/Release_x86

View File

@ -51,6 +51,7 @@ workspace "OpenAssetTools"
filter "configurations:Release"
defines "NDEBUG"
optimize "Full"
symbols "Off"
flags {
"FatalWarnings"
}