-
Notifications
You must be signed in to change notification settings - Fork 0
55 lines (54 loc) · 1.32 KB
/
ci.yml
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
---
name: CI
on: [ workflow_dispatch, push, pull_request ]
jobs:
omnilint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.1
- uses: docker://lpenz/omnilint:0.5.1
rust:
uses: lpenz/ghworkflow-rust/.github/workflows/rust.yml@v0.19.0
with:
coveralls: true
publish_cratesio: false
publish_github_release: false
solve:
strategy:
matrix:
day:
- day01
- day02
- day03
- day04
- day05
- day06
- day07
- day08
- day09
- day10
- day11
- day12
- day13
- day14
- day15
- day16
- day17
if: github.ref == 'refs/heads/main'
needs: [ omnilint, rust ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.1
- name: build ${{ matrix.day }}
run: |
cargo build \
--release \
-p ${{ matrix.day }}
- name: solve ${{ matrix.day }}
run: |
for part in a b; do
bin="./target/release/${{ matrix.day }}$part"
if [ -x "$bin" ]; then
(set -x; "$bin" < ${{ matrix.day }}/input.txt) 2>&1 | tee -a "$GITHUB_STEP_SUMMARY"
fi
done