-
Notifications
You must be signed in to change notification settings - Fork 1
79 lines (69 loc) · 1.87 KB
/
Copy pathci.yml
File metadata and controls
79 lines (69 loc) · 1.87 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
name: ci
on:
push:
pull_request:
branches:
- main
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
test-actions:
runs-on: arc-runner-set-uchicago
steps:
- uses: actions/checkout@v6
- uses: ./.github/actions/setup-globus
with:
voms-usercert: ${{ secrets.VOMS_USERCERT }}
voms-userkey: ${{ secrets.VOMS_USERKEY }}
test-handlers:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: prefix-dev/setup-pixi@v0.9.6
with:
pixi-version: v0.49.0
environments: kibana
- name: Run parser tests
run: pixi run -e kibana test
test-parser:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- log-file: "coffea_hist.log"
log-type: "coffea"
- log-file: "eventloop_arrays.log"
log-type: "eventloop"
- log-file: "eventloop_noarrays.log"
log-type: "eventloop"
- log-file: "log.generate"
log-type: "evnt"
- log-file: "fastframes.log"
log-type: "fastframes"
- log-file: "rucio.log"
log-type: "rucio"
- log-file: "log.Derivation"
log-type: "truth3"
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: parse ${{ matrix.log-type }} log
uses: ./.github/actions/parse
with:
job: ${{ matrix.log-type }}
log-file: parsing/example-logs/${{ matrix.log-file }}
log-type: ${{ matrix.log-type }}
cluster: UC-AF
kibana-token: "our-token"
kibana-kind: "our-index"
host: "our-host"
os: alma9
mode: batch
containerized: "false"