AM-77 Remove sh_mem and related sources from the project #120
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Windows build | |
on: | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build-windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Checkout aquamarine repo | |
uses: actions/checkout@v3 | |
with: | |
repository: MaksymT17/aquamarine | |
ref: ${{ github.head_ref }} | |
path: aquamarine | |
- name: Build artifacts with Cmake | |
run: | | |
cd aquamarine && | |
echo "removing existing build folder..." | |
rm -rf build/ && | |
mkdir build && | |
echo "preparing new build with cmake..." && | |
cd build/ && | |
cmake -DCMAKE_BUILD_TYPE=Release .. && | |
cmake --build . && | |
echo "Build complete!" | |
shell: bash | |
- name: Upload build artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: aquamarine_build_Windows | |
path: aquamarine/build/ |