-
Notifications
You must be signed in to change notification settings - Fork 88
52 lines (45 loc) · 1.39 KB
/
binaries-linux.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
# Build executables that can be used on any Linux with 64bit CPUs.
#
# Produces static ELF binary using MuslC which includes all needed libraries
# statically linked into it.
name: Linux x86_64
on:
push:
branches:
- "**"
tags:
- "*.*.*"
jobs:
build-executables:
name: "Build x86_64-linux static executables"
runs-on: ubuntu-latest
steps:
- name: 📥 Checkout repository
uses: actions/checkout@v4
with:
# Also ensure we have all history with all tags
fetch-depth: 0
- name: ❄ Prepare nix
uses: cachix/install-nix-action@v23
with:
extra_nix_config: |
accept-flake-config = true
log-lines = 1000
- name: ❄ Cachix cache of nix derivations
uses: cachix/cachix-action@v13
with:
name: cardano-scaling
authToken: '${{ secrets.CACHIX_CARDANO_SCALING_AUTH_TOKEN }}'
- name: ❄ Build static executables
run: |
nix build .#release-static
# XXX: Why unzip https://github.com/actions/upload-artifact/issues/39
- name: 🤐 Unzip and prepare upload
run: |
echo "VERSION=$(git describe --always ${{ github.ref }})" >> "$GITHUB_ENV"
unzip result/*.zip -d out
- name: 💾 Upload executables
uses: actions/upload-artifact@v3
with:
name: hydra-x86_64-linux-${{ env.VERSION }} # automatically zips
path: out/*