AM-75 Implement aquamarine as SOA software #86
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: Clone aquamarine repo | |
run: git clone --branch ${{ github.head_ref }} https://github.com/MaksymT17/aquamarine.git | |
shell: bash | |
- 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 .. && | |
cmake --build . && | |
echo "Build complete!" | |
shell: bash |