Skip to content

Commit

Permalink
Fix bad test command in CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
zbeekman committed Dec 11, 2024
1 parent c2a2afd commit 28740ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ jobs:
submodules: recursive
- name: patch TAU & link flang
run: |
sed -i 's/#FLANG_NO_MX_OPTS#//' /usr/local/x86_64/lib/Makefile.tau-clang-pthread || true
if [[ ! -e /usr/local/bin/flang ]]; then
sed -i 's/#FLANG_NO_MX_OPTS#//' /usr/local/x86_64/lib/Makefile.tau-clang-pthread || echo "sed command returned non-zero status"
if ! [ -e /usr/local/bin/flang ]; then
echo "Linking flang-new as flang"
ln -s /usr/local/bin/flang-new /usr/local/bin/flang
else
Expand Down

0 comments on commit 28740ca

Please sign in to comment.