From ac131589458d80107198c3c55b0dd79c71385c10 Mon Sep 17 00:00:00 2001 From: tobid7 Date: Sat, 9 Mar 2024 10:31:02 +0100 Subject: [PATCH] This Works? --- .gitea/workflows/main.yaml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/.gitea/workflows/main.yaml b/.gitea/workflows/main.yaml index 314f6ba..88439b7 100644 --- a/.gitea/workflows/main.yaml +++ b/.gitea/workflows/main.yaml @@ -3,16 +3,18 @@ run-name: Build-Test bannertool on: [push] jobs: - Build: + linux-x64: runs-on: ubuntu-latest + container: dockcross/linux-x64 steps: - name: Checkout uses: actions/checkout@v2 - - name: Install Tools - run: | - apt-get update -y - apt-get install build-essential cmake -y - name: Build run: | - cmake -B cmake-build-debug - cmake --build cmake-build-debug \ No newline at end of file + dockcross cmake -B cmake-build-debug + dockcross cmake --build cmake-build-debug + - name: upload artifact + uses: actions/upload-artifact@v2 + with: + name: bannertool + path: cmake-build-debug/bannertool \ No newline at end of file