-
Notifications
You must be signed in to change notification settings - Fork 55
41 lines (38 loc) · 1.04 KB
/
build-lcg-cvmfs.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
41
name: Build LCG on CVMFS
on: [push, pull_request]
jobs:
linux:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
LCG: ["LCG_101/x86_64-ubuntu2004-gcc9-opt",
"LCG_99/x86_64-ubuntu2004-gcc9-opt"]
steps:
- uses: actions/checkout@v2
- uses: cvmfs-contrib/github-action-cvmfs@v2
with:
cvmfs_repositories: 'sft.cern.ch,geant4.cern.ch'
- uses: aidasoft/run-lcg-view@v1
with:
release-platform: ${{ matrix.LCG }}
run: |
cmake -Bbuild -S.
cmake --build build
macos:
runs-on: macos-10.15
strategy:
matrix:
LCG: ["LCG_101/x86_64-mac1015-clang120-opt",
"LCG_99/x86_64-mac1015-clang120-opt"]
steps:
- uses: actions/checkout@v2
- uses: cvmfs-contrib/github-action-cvmfs@v2
with:
cvmfs_repositories: 'sft.cern.ch,geant4.cern.ch'
- uses: aidasoft/run-lcg-view@v1
with:
release-platform: ${{ matrix.LCG }}
run: |
cmake -Bbuild -S.
cmake --build build