From 9cd00f2648e1b31313f826fa621467dc81355ddb Mon Sep 17 00:00:00 2001 From: Christopher Dilks Date: Tue, 16 Jan 2024 14:02:45 -0500 Subject: [PATCH] fix(ci): syntax --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 619b5246..e8d7c94c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,7 +33,7 @@ jobs: ref: ${{ env.hipo_version }} - name: build run: | - cmake -S . -B build -DCMAKE_INSTALL_PREFIX=hipo -DCMAKE_POSITION_INDEPENDENT_CODE=ON + cmake -S . -B build -DCMAKE_INSTALL_PREFIX=hipo cmake --build build -j2 cmake --install build tar czvf hipo{.tar.gz,} @@ -129,10 +129,10 @@ jobs: run: | meson setup \ $(meson/resolve-dependencies.py --cli --hipo hipo --fmt fmt) \ - -Dbuildtype release \ - -Dprefix $(pwd)/iguana \ - -Dexamples True \ - -Ddocumentation False \ + -Dbuildtype=release \ + -Dprefix=$(pwd)/iguana \ + -Dexamples=True \ + -Ddocumentation=False \ ${{ matrix.extra_build_opts }} \ build - name: dump build options