Try out magic-nix-cache #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Static executable | |
on: | |
push: | |
branches: | |
- "**" | |
tags: | |
- "*.*.*" | |
jobs: | |
build: | |
steps: | |
- 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 |