Skip to content

Commit

Permalink
Win GH action fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ben committed Apr 3, 2024
1 parent b5ad4cd commit 1db02c9
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/build_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,21 @@ jobs:
- uses: actions/checkout@v3
- name: Clone aquamarine repo
run: git clone --branch ${{ github.head_ref }} https://github.com/MaksymT17/aquamarine.git

- name: Install packages
run: |
choco install sqlite
shell: bash

- name: Build artifacts with Cmake
run: |
cd aquamarine &&
cd aquamarine
./build.sh
shell: bash

- name: Run unit tests
run: |
cd aquamarine/unit_tests &&
./prepare_build.sh &&
./make_and_run_tests.sh
cd aquamarine/unit_tests
./prepare_build.sh
./make_and_run_tests.sh
shell: bash

0 comments on commit 1db02c9

Please sign in to comment.