Skip to content

Commit

Permalink
ci
Browse files Browse the repository at this point in the history
  • Loading branch information
katrinafyi committed Apr 4, 2024
1 parent d877b6b commit 0b51147
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,12 @@ jobs:
echo "OUTPUT=$(pwd)/_build/default/tests/coverage" >> $GITHUB_OUTPUT
rm -rf _build/default/tests/coverage/encodings
id: coverage
- run: sudo apt-get install clang-15 lld-15 meson ninja
- run: offlineASL-cpp/build.sh
env:
CXX: "clang++-15"
CXX_LD: "ld.lld-15"


- name: Upload new coverage results
if: always()
Expand Down
4 changes: 2 additions & 2 deletions offlineASL-cpp/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ set -o pipefail
# echo ":gen A64 aarch64_integer_arithmetic.+ cpp $(pwd)" | dune exec asli
dir="$(dirname "$0")"
cd "$dir"
# echo ":gen A64 aarch64.+ cpp ./subprojects" | dune exec asli
echo ":gen A64 aarch64.+ cpp ./subprojects" | dune exec asli

CXX=$(which clang++) CXX_LD=$(which ld.lld) meson setup --reconfigure build
meson setup --reconfigure build
pushd build
meson compile
DESTDIR=$(pwd)/prefix meson install
Expand Down

0 comments on commit 0b51147

Please sign in to comment.