Skip to content

Commit

Permalink
Enforce ispc package name in CI to make it work for release as well
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmitry Babokin committed May 5, 2022
1 parent ea57e34 commit f7ec3aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/scripts/build-ispc.ps1
@@ -1,2 +1,2 @@
cmake -B build -DISPC_PREPARE_PACKAGE=ON -DISPC_CROSS=ON -DISPC_INCLUDE_BENCHMARKS=ON -DCMAKE_BUILD_TYPE="${env:BUILD_TYPE}" -DISPC_GNUWIN32_PATH="${env:CROSS_TOOLS_GNUWIN32}"
cmake -B build -DISPC_PREPARE_PACKAGE=ON -DISPC_CROSS=ON -DISPC_INCLUDE_BENCHMARKS=ON -DCMAKE_BUILD_TYPE="${env:BUILD_TYPE}" -DISPC_GNUWIN32_PATH="${env:CROSS_TOOLS_GNUWIN32}" -DISPC_PACKAGE_NAME=ispc-trunk-windows
cmake --build build --target package -j4 --config ${env:BUILD_TYPE}
2 changes: 1 addition & 1 deletion .github/workflows/scripts/build-ispc.sh
@@ -1,4 +1,4 @@
#!/bin/bash -e
echo PATH=$PATH
cmake -B build -DISPC_PREPARE_PACKAGE=ON -DISPC_INCLUDE_BENCHMARKS=ON -DCMAKE_CXX_FLAGS=-Werror
cmake -B build -DISPC_PREPARE_PACKAGE=ON -DISPC_INCLUDE_BENCHMARKS=ON -DCMAKE_CXX_FLAGS=-Werror -DISPC_PACKAGE_NAME=ispc-trunk-linux
cmake --build build --target package -j4

0 comments on commit f7ec3aa

Please sign in to comment.