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 b1cef8f
Showing 1 changed file with 14 additions and 5 deletions.
19 changes: 14 additions & 5 deletions .github/workflows/build_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,23 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Clone aquamarine repo
run: git clone --branch ${{ github.head_ref }} https://github.com/MaksymT17/aquamarine.git
run: git clone https://github.com/MaksymT17/aquamarine.git

- name: Install packages
run: |
choco install sqlite
choco install libjpeg-turbo
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 b1cef8f

Please sign in to comment.