Skip to content

Commit

Permalink
ci: enable tests on Alpine Linux workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
striezel committed Mar 26, 2024
1 parent 03aa79b commit 81506e3
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/alpine.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,10 @@ jobs:
mariadb -uroot -proot -e "CREATE DATABASE IF NOT EXISTS weather_information_collector"
mariadb -uroot -proot -e "GRANT ALL ON weather_information_collector.* TO 'root'@'localhost';"
mariadb -uroot --password=root -e "SHOW DATABASES;"
# - name: Run tests
# run: |
# cd "$GITHUB_WORKSPACE/build"
# ctest -V
- name: Run tests
run: |
cd "$GITHUB_WORKSPACE/build"
ctest -V
- name: Install statically linked libraries
run: |
apk add brotli-static c-ares-static curl-static libidn2-static
Expand All @@ -82,7 +82,7 @@ jobs:
mariadb -uroot -proot -e "CREATE DATABASE IF NOT EXISTS weather_information_collector"
mariadb -uroot -proot -e "GRANT ALL ON weather_information_collector.* TO 'root'@'localhost';"
mariadb -uroot --password=root -e "SHOW DATABASES;"
# - name: Run tests for statically linked build
# run: |
# cd "$GITHUB_WORKSPACE/build-static"
# ctest -V
- name: Run tests for statically linked build
run: |
cd "$GITHUB_WORKSPACE/build-static"
ctest -V

0 comments on commit 81506e3

Please sign in to comment.