Skip to content

Commit

Permalink
yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Acktarius committed Feb 12, 2025
1 parent 234df99 commit ab7fb6f
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ jobs:
mingw-w64-x86_64-toolchain
mingw-w64-x86_64-boost
mingw-w64-x86_64-cmake
mingw-w64-x86_64-gcc
- uses: actions/checkout@master

Expand All @@ -125,11 +126,10 @@ jobs:
shell: msys2 {0}
id: build
run: |
ls
mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTS=ON -DSTATIC=ON
cmake --build . --config Release
cmake .. -G "MSYS Makefiles" -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTS=ON -DSTATIC=ON -DBOOST_ROOT=/mingw64
cmake --build . --config Release -- -j2
- name: Prepare release
shell: msys2 {0}
Expand Down Expand Up @@ -470,14 +470,15 @@ jobs:
- name: Install dependencies
run: |
brew install boost
brew update
brew install boost cmake
- name: Build
id: build
run: |
mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTS=ON -DSTATIC=ON
cmake .. -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTS=ON -DSTATIC=ON -DBOOST_ROOT=$(brew --prefix boost) -DCMAKE_CXX_FLAGS="-std=c++11"
make -j2
- name: Prepare release
Expand Down

0 comments on commit ab7fb6f

Please sign in to comment.