-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
53 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
|
||
name: Static executable | ||
|
||
on: | ||
push: | ||
branches: | ||
- "**" | ||
tags: | ||
- "*.*.*" | ||
|
||
jobs: | ||
build-executables: | ||
name: "build static executables" | ||
runs-on: ubuntu-latest | ||
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 static executable | ||
run: | | ||
mkdir bin | ||
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 |
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