forked from solvcon/devenv
-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (40 loc) · 1.08 KB
/
build_pkg_runner.yml
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
36
37
38
39
40
name: Package Built by devenv
on:
schedule:
- cron: '21 18 * * 5'
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, macos-latest]
fail-fast: false
steps:
- name: Checkout Repository
uses: actions/checkout@v2
with:
fetch-depth: 1
- name: Scotch - tarball build
run: |
working_flavor=scotch-tarball
source ${GITHUB_WORKSPACE}/scripts/init
devenv add ${working_flavor}
devenv use ${working_flavor}
devenv show
devenv build scotch
- name: Scotch - git repository
run: |
working_flavor=scotch-syncgit
source ${GITHUB_WORKSPACE}/scripts/init
devenv add ${working_flavor}
devenv use ${working_flavor}
devenv show
SYNCGIT="yes" devenv build scotch
- name: hdf5 - git repository
run: |
working_flavor=hdf5-syncgit
source ${GITHUB_WORKSPACE}/scripts/init
devenv add ${working_flavor}
devenv use ${working_flavor}
devenv show
devenv build hdf