Last change
on this file since 071a8d7 was 288a5fc, checked in by Pavel Demin <pavel.demin@…>, 5 years ago |
set CircleCI version to 2.1
|
-
Property mode
set to
100644
|
File size:
701 bytes
|
Line | |
---|
1 | version: 2.1
|
---|
2 |
|
---|
3 | shared: &shared
|
---|
4 | steps:
|
---|
5 | - checkout
|
---|
6 | - run:
|
---|
7 | name: Build Delphes using make
|
---|
8 | command: |
|
---|
9 | make distclean
|
---|
10 | make -j 8 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 8
|
---|
19 |
|
---|
20 | jobs:
|
---|
21 | ubuntu-1404:
|
---|
22 | <<: *shared
|
---|
23 | docker:
|
---|
24 | - image: delphes/ubuntu:14.04
|
---|
25 | ubuntu-1804:
|
---|
26 | <<: *shared
|
---|
27 | docker:
|
---|
28 | - image: delphes/ubuntu:18.04
|
---|
29 | fedora-30:
|
---|
30 | <<: *shared
|
---|
31 | docker:
|
---|
32 | - image: delphes/fedora:30
|
---|
33 |
|
---|
34 | workflows:
|
---|
35 | version: 2
|
---|
36 | test:
|
---|
37 | jobs:
|
---|
38 | - ubuntu-1404
|
---|
39 | - ubuntu-1804
|
---|
40 | - fedora-30
|
---|
Note:
See
TracBrowser
for help on using the repository browser.