Skip to content

Commit

Permalink
Try out magic-nix-cache
Browse files Browse the repository at this point in the history
  • Loading branch information
v0d1ch committed Nov 28, 2023
1 parent 6212328 commit 90bbb51
Showing 1 changed file with 35 additions and 24 deletions.
59 changes: 35 additions & 24 deletions .github/workflows/static-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,28 +9,39 @@ on:
- "*.*.*"

jobs:
build-executables:
name: "Build static executables"
runs-on: ubuntu-latest
build:
steps:
- name: 📥 Checkout repository
uses: actions/checkout@v4

- name: ❄ Prepare nix
uses: cachix/install-nix-action@v23
with:
extra_nix_config: |
accept-flake-config = true
log-lines = 1000
- name: ❄ Build static executables
run: |
mkdir -p bin/
nix build .#easy-rider-static && cp result/bin/* bin/
- name: 💾 Upload executables
uses: actions/upload-artifact@v3
with:
name: hydra-x86_64-unknown-linux-musl
path: |
./bin
- uses: actions/checkout@v3
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@v4
- name: Run the Magic Nix Cache
uses: DeterminateSystems/magic-nix-cache-action@v2
- name: Build server and client
run: |
nix build .#easy-rider-static && cp result/bin/* bin/
# jobs:
# build-executables:
# name: "build static executables"
# runs-on: ubuntu-latest
# steps:
# - name: 📥 checkout repository
# uses: actions/checkout@v4
#
# - name: ❄ prepare nix
# uses: cachix/install-nix-action@v23
# with:
# extra_nix_config: |
# accept-flake-config = true
# log-lines = 1000
#
# - name: ❄ build static executables
# run: |
# mkdir -p bin/
# nix build .#easy-rider-static && cp result/bin/* bin/
#
# - name: 💾 upload executables
# uses: actions/upload-artifact@v3
# with:
# name: hydra-x86_64-unknown-linux-musl
# path: |
# ./bin

0 comments on commit 90bbb51

Please sign in to comment.