-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (32 loc) · 987 Bytes
/
Publish.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: Publish
on:
push:
tags:
- '*'
env:
CARGO_TERM_COLOR: always
jobs:
Publish:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: 'recursive'
- name: Install dependencies
run: sudo apt-get install ninja-build libtbb-dev libhwloc-dev libboost-program-options-dev
- name: Setup environment
run: |
echo MTKAHYPAR_DIR=$(mktemp -d) >> $GITHUB_ENV
- name: Build Mt-KaHyPar
run: |
cd $(mktemp -d)
git clone --recursive https://github.com/kahypar/mt-kahypar.git .
git checkout $(git describe --tags $(git rev-list --tags --max-count=1))
cmake -B build -D CMAKE_INSTALL_PREFIX=$MTKAHYPAR_DIR
cmake --build build --target mtkahypar
cmake --install build
- name: Publish
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
run: cargo publish