Skip to content

Commit

Permalink
ios and run-on-arch
Browse files Browse the repository at this point in the history
  • Loading branch information
alfredh committed Sep 9, 2024
1 parent 97494db commit 9e19c9f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ jobs:
- name: normal build
run: |
cmake -B build -DCMAKE_SYSTEM_NAME=iOS -DCMAKE_OSX_DEPLOYMENT_TARGET=12.0 -DCMAKE_DISABLE_FIND_PACKAGE_OpenSSL=ON -DUSE_OPENSSL=OFF -DCMAKE_C_FLAGS="-Werror"
cmake --build build -j retest
cmake --build build -j -t retest
4 changes: 2 additions & 2 deletions .github/workflows/run-on-arch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ jobs:
case "${{ matrix.distro }}" in
ubuntu*|jessie|stretch|buster|bullseye)
apt-get update -q -y
apt-get install -q -y cmake gcc g++ libssl-dev ninja-build
apt-get install -q -y cmake gcc g++ libssl-dev ninja-build valgrind
;;
esac
run: |
cmake -G Ninja -B build -DCMAKE_C_FLAGS="-Werror"
cmake --build build -j --target retest
./build/test/retest -r -v
valgrind --leak-check=full --show-reachable=yes --error-exitcode=42 ./build/test/retest -r -v

0 comments on commit 9e19c9f

Please sign in to comment.