Skip to content

Commit

Permalink
Try windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
SergeySeroshtan committed Apr 27, 2024
1 parent 94180e2 commit 9f07a54
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/build-windows-php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,16 @@ jobs:
arch: ${{ matrix.arch }}
- name: Configure project
run: >
cmake \
-DCMAKE_BUILD_TYPE=Release \
-DVIRGIL_PACKAGE_PLATFORM_ARCH=${{ matrix.arch }} \
-DVIRGIL_PACKAGE_LANGUAGE_VERSION=${{ matrix.php-version }} \
-DCPACK_OUTPUT_FILE_PREFIX=php \
-DENABLE_CLANGFORMAT=OFF \
-DED25519_REF10=OFF -DED25519_AMD64_RADIX_64_24K=ON \
-Bbuild -S.
cmake -G"NMake Makefiles" ^
-DVIRGIL_LIB_PYTHIA=OFF ^
-DCMAKE_BUILD_TYPE=Release ^
-DVIRGIL_PACKAGE_PLATFORM_ARCH=${{ matrix.arch }} ^
-DVIRGIL_PACKAGE_LANGUAGE_VERSION=${{ matrix.php-version }} ^
-DCPACK_OUTPUT_FILE_PREFIX=php ^
-DENABLE_CLANGFORMAT=OFF ^
-Bbuild -S.
- name: Build project
run: cmake --build build -- -j$(nproc)
run: cmake --build build -- -j%NUMBER_OF_PROCESSORS%
- name: Test project
working-directory: build
run: ctest --verbose
Expand Down

0 comments on commit 9f07a54

Please sign in to comment.