Skip to content

Commit

Permalink
AM-76 Upload GA build artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
ben authored and MaksymT17 committed Sep 23, 2024
1 parent 1b496b7 commit 0a42190
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions .github/workflows/build_master_branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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

Expand Down Expand Up @@ -101,5 +113,11 @@ jobs:
cd aquamarine/unit_tests &&
./prepare_build.sh &&
cd build &&
make -j8 &&
./aquamarine_ut
make -j2 &&
./aquamarine_ut
- name: Upload build artifacts
uses: actions/upload-artifact@v3
with:
name: aquamarine_build_MacOS
path: aquamarine/build/

0 comments on commit 0a42190

Please sign in to comment.