Fork me on GitHub

source: git/.circleci/config.yml@ 50c00e4

ImprovedOutputFile Timing dual_readout llp
Last change on this file since 50c00e4 was 50c00e4, checked in by Pavel Demin <pavel-demin@…>, 6 years ago

switch to new docker images

  • Property mode set to 100644
File size: 612 bytes
Line 
1version: 2
2
3shared: &shared
4 steps:
5 - checkout
6 - run:
7 name: Build Delphes using make
8 command: |
9 make distclean
10 make -j `nproc` HAS_PYTHIA8=true
11 - run:
12 name: Build Delphes using cmake
13 command: |
14 rm -rf build
15 mkdir -p build
16 cd build
17 cmake ..
18 make -j `nproc`
19
20jobs:
21 ubuntu-1710:
22 <<: *shared
23 docker:
24 - image: delphes/ubuntu:17.10
25 fedora-28:
26 <<: *shared
27 docker:
28 - image: delphes/fedora:28
29
30workflows:
31 version: 2
32 test:
33 jobs:
34 - ubuntu-1710
35 - fedora-28
Note: See TracBrowser for help on using the repository browser.