2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-08-31 14:07:25 +00:00

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
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"
}