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 ./ParserTests
./ZoneCodeGeneratorLibTests ./ZoneCodeGeneratorLibTests
./ZoneCommonTests ./ZoneCommonTests
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: oat-linux
path: |
${{ github.workspace }}/build/bin/Release_x86
build-test-windows: build-test-windows:
env: env:
@ -81,3 +87,9 @@ jobs:
./ParserTests ./ParserTests
./ZoneCodeGeneratorLibTests ./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" filter "configurations:Release"
defines "NDEBUG" defines "NDEBUG"
optimize "Full" optimize "Full"
symbols "Off"
flags { flags {
"FatalWarnings" "FatalWarnings"
} }