forked from crillab/d4v2
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8cd1816
commit 4fb9fb6
Showing
9 changed files
with
317 additions
and
115 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,111 @@ | ||
name: Windows | ||
|
||
on: | ||
- push | ||
|
||
env: | ||
CMAKE_GENERATOR: Ninja | ||
SCCACHE_GHA_ENABLED: true | ||
|
||
jobs: | ||
Build: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
target: | ||
- os: windows | ||
runner: windows-latest | ||
triple: x86_64-pc-windows-gnu | ||
shell: msys2 | ||
compiler: | ||
- cc: gcc | ||
cxx: g++ | ||
msystem: ucrt64 | ||
- cc: clang | ||
cxx: clang++ | ||
msystem: clang64 | ||
solver: | ||
- minisat | ||
- glucose | ||
runs-on: ${{ matrix.target.runner }} | ||
defaults: | ||
run: | ||
shell: msys2 {0} | ||
env: | ||
CC: ${{ matrix.compiler.cc }} | ||
CXX: ${{ matrix.compiler.cxx }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Setup MSYS2 | ||
if: ${{ matrix.target.os == 'windows' }} | ||
uses: msys2/setup-msys2@v2 | ||
with: | ||
path-type: inherit | ||
msystem: ${{ matrix.compiler.msystem }} | ||
pacboy: git cmake:p ninja:p | ||
- name: Install dependencies | ||
run: | | ||
pacboy -S --noconfirm toolchain:p boost:p gmp:p hwloc:p tbb:p | ||
mv /${{ matrix.compiler.msystem }}/lib/libtbb12.dll.a /${{ matrix.compiler.msystem }}/lib/libtbb.dll.a | ||
- name: Setup sccache | ||
uses: mozilla-actions/sccache-action@v0.0.4 | ||
- name: Setup sccache environment | ||
run: | | ||
echo CMAKE_C_COMPILER_LAUNCHER=sccache >> $GITHUB_ENV | ||
echo CMAKE_CXX_COMPILER_LAUNCHER=sccache >> $GITHUB_ENV | ||
- name: Setup environment | ||
run: | | ||
export BUILD_ROOT=$(mktemp -d) | ||
echo BUILD_ROOT=$BUILD_ROOT >> $GITHUB_ENV | ||
echo BUILD_ROOT_EXPORT=$(python3 -c "import os; print(os.environ['BUILD_ROOT'])") >> $GITHUB_ENV | ||
- name: Build Mt-KaHyPar | ||
run: | | ||
cd $(mktemp -d) | ||
git clone --recursive https://github.com/kahypar/mt-kahypar.git . | ||
git checkout c51ffeaa3b1040530bf821b7f323e3790b147b33 | ||
cmake -B build -D CMAKE_INSTALL_PREFIX=$BUILD_ROOT -D MT_KAHYPAR_DISABLE_BOOST=true | ||
cmake --build build --target mtkahypar | ||
cmake --install build | ||
mkdir -p $BUILD_ROOT/licenses/mt-kahypar | ||
cp LICENSE $BUILD_ROOT/licenses/mt-kahypar/ | ||
- name: Build glucose | ||
if: ${{ matrix.solver == 'glucose' }} | ||
run: | | ||
cd 3rdParty/glucose-3.0 | ||
cmake -B build -D CMAKE_INSTALL_PREFIX=$BUILD_ROOT | ||
cmake --build build --target glucose | ||
cmake --install build | ||
- name: Configure | ||
run: >- | ||
cmake -B build | ||
-D CMAKE_INSTALL_PREFIX=$BUILD_ROOT | ||
-D MtKaHyPar_ROOT=$BUILD_ROOT | ||
-D glucose_ROOT=$BUILD_ROOT | ||
-D D4_SOLVER=${{ matrix.solver }} | ||
-D D4_PREPROC_SOLVER=${{ matrix.solver }} | ||
- name: Build | ||
run: cmake --build build | ||
- name: Install | ||
run: cmake --install build | ||
- name: Package | ||
run: | | ||
./package-msys.bash $BUILD_ROOT $BUILD_ROOT/bin/* | ||
rm -f $BUILD_ROOT/bin/b2 | ||
rm -f $BUILD_ROOT/bin/bjam | ||
rm -f $BUILD_ROOT/bin/glucose | ||
rm -f $BUILD_ROOT/bin/hwloc* | ||
rm -f $BUILD_ROOT/bin/lstopo* | ||
rm -rf $BUILD_ROOT/lib | ||
- name: Package | ||
run: | | ||
rm -rf $BUILD_ROOT/include | ||
rm -rf $BUILD_ROOT/share | ||
mkdir -p $BUILD_ROOT/licenses/d4 | ||
cp LICENSE $BUILD_ROOT/licenses/d4/ | ||
cp doc/windows.md $BUILD_ROOT/README.md | ||
- name: Upload | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: d4-${{ matrix.target.triple }}-${{ matrix.compiler.cc }}-${{ matrix.solver }} | ||
path: ${{ env.BUILD_ROOT_EXPORT }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
x86_64-darwin.md |
File renamed without changes.
File renamed without changes.
File renamed without changes.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.