-
Notifications
You must be signed in to change notification settings - Fork 5
57 lines (44 loc) · 1.13 KB
/
repro.yaml
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
name: Track how repro we are
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
build-recipes:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- uses: prefix-dev/[email protected]
with:
pixi-version: "latest"
- name: Build recipes and track if hash is equal
run: |
mkdir /opt/bld
pixi run python src/repror/build_recipe.py
- name: Upload results
uses: actions/upload-artifact@v4
with:
name: artifacts
path: |
build_info/
artifacts/
rebuild-recipes:
runs-on: macos-latest
needs: build-recipes
steps:
- name: Checkout code
uses: actions/checkout@v2
- uses: prefix-dev/[email protected]
with:
pixi-version: "latest"
- uses: actions/download-artifact@v4
with:
name: artifacts
path: .
- name: Rebuild recipes and track if hash is equal
run: |
mkdir /opt/bld
pixi run python src/repror/rebuild_recipe.py