From 0a42190540e1537d702c82afbb887b16324450c0 Mon Sep 17 00:00:00 2001 From: ben Date: Mon, 23 Sep 2024 13:23:53 +0300 Subject: [PATCH] AM-76 Upload GA build artifacts --- .github/workflows/build_master_branch.yml | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_master_branch.yml b/.github/workflows/build_master_branch.yml index 411c2f3..cff82be 100644 --- a/.github/workflows/build_master_branch.yml +++ b/.github/workflows/build_master_branch.yml @@ -47,6 +47,12 @@ jobs: check_name: Unit test results files: "**/test_detail.xml" + - name: Upload build artifacts + uses: actions/upload-artifact@v3 + with: + name: aquamarine_build_Linux + path: aquamarine/build/ + build-windows: runs-on: windows-latest @@ -73,6 +79,12 @@ jobs: echo "Build complete!" shell: bash + - name: Upload build artifacts + uses: actions/upload-artifact@v3 + with: + name: aquamarine_build_Windows + path: aquamarine/build/ + build-macos: runs-on: macos-latest @@ -101,5 +113,11 @@ jobs: cd aquamarine/unit_tests && ./prepare_build.sh && cd build && - make -j8 && - ./aquamarine_ut \ No newline at end of file + make -j2 && + ./aquamarine_ut + + - name: Upload build artifacts + uses: actions/upload-artifact@v3 + with: + name: aquamarine_build_MacOS + path: aquamarine/build/ \ No newline at end of file