Skip to content

Commit

Permalink
actions: use 'ninja -C' instead of 'meson compile -C'
Browse files Browse the repository at this point in the history
Apparently the latter no longer exists or something?

Signed-off-by: Steven Noonan <[email protected]>
  • Loading branch information
tycho committed Jun 11, 2024
1 parent 7726e43 commit 4514906
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ build_and_run() {
rm -rf "$BUILDDIR"
mkdir "$BUILDDIR"
meson setup "$BUILDDIR" . -Dwerror=true $MESON_ARGS
meson compile -C "$BUILDDIR"
ninja -C "$BUILDDIR"
"$BUILDDIR"/nbody --bodies 4 --cycle-after 1 --iterations 1 --verbose
}

Expand Down

0 comments on commit 4514906

Please sign in to comment.