From 2a7388b4903bcb7917211a382cdd4fe9f9445c79 Mon Sep 17 00:00:00 2001 From: Jan Date: Sun, 18 Jun 2023 14:54:13 +0200 Subject: [PATCH 1/2] Upload artifacts after ci --- .github/workflows/ci.yaml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) 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 From f5e536c1bd942be44d447863bd384488bd7e17fa Mon Sep 17 00:00:00 2001 From: Jan Date: Sun, 18 Jun 2023 15:19:40 +0200 Subject: [PATCH 2/2] Do not generate symbols when in release mode --- premake5.lua | 1 + 1 file changed, 1 insertion(+) 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" }