Fork me on GitHub

source: git/.github/workflows/ci.yml@ 7fc0708

Last change on this file since 7fc0708 was b438187, checked in by Pavel Demin <pavel.demin@…>, 3 years ago

rename build to ci

  • Property mode set to 100644
File size: 602 bytes
RevLine 
[b438187]1name: ci
[4658ca4]2
3on: [push, pull_request]
4
5jobs:
6 build:
7 runs-on: ubuntu-latest
8
9 strategy:
10 matrix:
11 container: ["delphes/ubuntu:14.04", "delphes/ubuntu:18.04", "delphes/fedora:30"]
12
13 container:
14 image: ${{ matrix.container }}
15
16 steps:
17 - name: Checkout code
18 uses: actions/checkout@v2
19
20 - name: Build Delphes using make
21 run: |
22 make distclean
23 make -j 8 HAS_PYTHIA8=true
24
25 - name: Build Delphes using cmake
26 run: |
27 rm -rf build
28 mkdir -p build
29 cd build
30 cmake ..
31 make -j 8
Note: See TracBrowser for help on using the repository browser.