Create build_aqamarine.yml #1
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: C/C++ CI | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install packages | |
run: apt -y install git g++ cmake python3 valgrind gcovr libsqlite3-dev | |
- name: Clone aquamarine repo | |
run: git clone https://github.com/MaksymT17/aquamarine.git | |
- name: Build artifacts with Cmake | |
run: cd aquamarine | |
./build.sh |