-
Notifications
You must be signed in to change notification settings - Fork 97
57 lines (51 loc) · 1.77 KB
/
release.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
55
56
57
name: release
# We trigger this on all tags and on the `master` branch. The job
# `changelog` will fail for tags that don’t have a
# changelog entry, so that seems good enough.
# For `master` this check is skipped as well as uploads.
on:
push:
tags:
- '*'
branches:
- 'master'
jobs:
# Now build the release on both linux and darwin
build:
strategy:
matrix:
os: [ ubuntu-latest, macos-12 ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@V28
- uses: cachix/cachix-action@v15
if: startsWith(github.ref, 'refs/heads/')
with:
name: ic-hs-test
# NB: No auth token, we don’t want to push new stuff here
- uses: cachix/cachix-action@v15
if: startsWith(github.ref, 'refs/tags/')
with:
name: ic-hs-test
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- run: cachix watch-store ic-hs-test &
- name: "nix-build"
# these are the dependencies listed in release-files. Sorry for the duplication
run: |
nix-build --max-jobs 1 --arg officialRelease true -A moc -A mo-ide -A mo-doc -A js.moc -A js.moc_interpreter
# Finally do the upload. Hopefully the previous job has uploaded the
# build product to the cachix cache, as we cannot build the darwin products on
# linux
release:
if: startsWith(github.ref, 'refs/tags/')
runs-on: 'ubuntu-latest'
needs: [ build ]
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@V28
- uses: cachix/cachix-action@v15
with:
name: ic-hs-test
# NB: No auth token, we don’t expect to push new stuff here
- run: nix-build --option download-buffer-size 167108864 --max-jobs 1 --arg officialRelease true release-files.nix