Skip to content

Commit

Permalink
t
Browse files Browse the repository at this point in the history
  • Loading branch information
carenas committed Jun 10, 2024
1 parent 8f5e177 commit 98b89da
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ jobs:
uses: actions/checkout@v4

- name: Configure
run: cmake -DPCRE2_SUPPORT_JIT=ON -DPCRE2_BUILD_PCRE2_16=ON -DPCRE2_BUILD_PCRE2_32=ON -DCMAKE_OSX_ARCHITECTURES='arm64;x86_64' -DCMAKE_C_FLAGS='-Wall -Wextra' -B build
run: |
cmake -DPCRE2_SUPPORT_JIT=ON -DPCRE2_BUILD_PCRE2_16=ON -DPCRE2_BUILD_PCRE2_32=ON -DCMAKE_OSX_ARCHITECTURES='arm64;x86_64' -DCMAKE_C_FLAGS='-Wall -Wextra' -B build
- name: Build
run: cmake --build build
Expand Down Expand Up @@ -104,7 +105,9 @@ jobs:
uses: actions/checkout@v4

- name: Configure
run: cmake -DPCRE2_SUPPORT_JIT=ON -DPCRE2_BUILD_PCRE2_16=ON -DPCRE2_BUILD_PCRE2_32=ON -B build -A Win32
run: |
cmake -DPCRE2_SUPPORT_JIT=ON -DPCRE2_BUILD_PCRE2_16=ON -DPCRE2_BUILD_PCRE2_32=ON -DCMAKE_C_FLAGS="/DWIN32 /D_WINDOWS /W3 /WX" -DCMAKE_REQUIRED_FLAGS="/WX:NO" -B build -A Win32
type build/CMakeFiles/CMakeConfigureLog.yaml
- name: Build
run: cmake --build build
Expand Down

0 comments on commit 98b89da

Please sign in to comment.