-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1243 from input-output-hk/merge-github-workflows
Merge binary producing github action workflows
- Loading branch information
Showing
5 changed files
with
91 additions
and
105 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,86 @@ | ||
# Build distributable executables for hydra | ||
name: Binaries | ||
|
||
on: | ||
push: | ||
branches: | ||
- "**" | ||
tags: | ||
- "*.*.*" | ||
|
||
jobs: | ||
# Produces static ELF binary for using MuslC which includes all needed | ||
# libraries statically linked into it. | ||
build-executables-linux: | ||
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 | ||
echo "VERSION=$(git describe --always ${{ github.ref }})" >> "$GITHUB_ENV" | ||
unzip result/*.zip -d out | ||
- name: 💾 Upload executables | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: hydra-x86_64-linux-${{ env.VERSION }} # automatically zips | ||
path: out/* | ||
|
||
# Produces a dynamic Mach-O binary which is still dynamically linked against | ||
# system dependencies, but all third-party libraries are statically linked. | ||
build-executables-macos: | ||
name: "Build aarch64-darwin dynamic executables" | ||
runs-on: [self-hosted, macOS, ARM64] | ||
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 executables | ||
run: | | ||
nix build .#release | ||
# XXX: Why unzip https://github.com/actions/upload-artifact/issues/39 | ||
echo "VERSION=$(git describe --always ${{ github.ref }})" >> "$GITHUB_ENV" | ||
unzip result/*.zip -d out | ||
- name: 💾 Upload executables | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: hydra-aarch64-darwin-${{ env.VERSION }} # automatically zips | ||
path: out/* |
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
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 |
---|---|---|
|
@@ -58,3 +58,4 @@ jobs: | |
with: | ||
name: hydra-cluster-logs | ||
path: ${state_dir}/logs/**/* | ||
if-no-files-found: ignore |