diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index ba6001f5..8d3b6a1d 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -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 \ No newline at end of file + ./ZoneCommonTests + - name: Upload artifacts + uses: actions/upload-artifact@v3 + with: + name: oat-windows + path: | + ${{ github.workspace }}/build/bin/Release_x86 \ No newline at end of file diff --git a/premake5.lua b/premake5.lua index a7072040..a995bf14 100644 --- a/premake5.lua +++ b/premake5.lua @@ -51,6 +51,7 @@ workspace "OpenAssetTools" filter "configurations:Release" defines "NDEBUG" optimize "Full" + symbols "Off" flags { "FatalWarnings" }