Fork me on GitHub

source: git/.circleci/config.yml@ 4f7f2cd

ImprovedOutputFile Timing
Last change on this file since 4f7f2cd was 6182516, checked in by Pavel Demin <pavel-demin@…>, 5 years ago

remove fedora-28

  • Property mode set to 100644
File size: 711 bytes
RevLine 
[58cfe91]1version: 2
[fc5787d]2
3shared: &shared
4 steps:
5 - checkout
6 - run:
[7834e65f]7 name: Build Delphes using make
8 command: |
9 make distclean
10 make -j `nproc` HAS_PYTHIA8=true
[fc5787d]11 - run:
[7834e65f]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`
[fc5787d]19
[58cfe91]20jobs:
[ba45abf]21 ubuntu-1404:
[fc5787d]22 <<: *shared
[58cfe91]23 docker:
[ba45abf]24 - image: delphes/ubuntu:14.04
[cf38224]25 ubuntu-1804:
26 <<: *shared
27 docker:
28 - image: delphes/ubuntu:18.04
[8c091583]29 fedora-30:
30 <<: *shared
31 docker:
32 - image: delphes/fedora:30
[2c838c0]33
34workflows:
35 version: 2
[28077b2]36 test:
[2c838c0]37 jobs:
[ba45abf]38 - ubuntu-1404
[cf38224]39 - ubuntu-1804
[8c091583]40 - fedora-30
Note: See TracBrowser for help on using the repository browser.