-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add flake(holochain + lair) and build workflow
- Loading branch information
Showing
4 changed files
with
441 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,68 @@ | ||
name: build and cache | ||
|
||
on: push | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref_name }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
build-holochain: | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, macos-latest, macos-13] | ||
fail-fast: false | ||
|
||
runs-on: ${{ matrix.os }} | ||
|
||
steps: | ||
- name: Print platform information | ||
run: uname -ms | ||
|
||
- name: Check out source code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install nix | ||
uses: cachix/install-nix-action@v25 | ||
with: | ||
install_url: https://releases.nixos.org/nix/nix-2.18.0/install | ||
|
||
- name: Use GitHub cache | ||
uses: DeterminateSystems/magic-nix-cache-action@main | ||
|
||
- name: Build nix package | ||
run: nix build -L .#holochain | ||
|
||
- name: Setup tmate session | ||
if: failure() | ||
uses: mxschmitt/action-tmate@v3 | ||
|
||
build-lair: | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, macos-latest, macos-13] | ||
fail-fast: false | ||
|
||
runs-on: ${{ matrix.os }} | ||
|
||
steps: | ||
- name: Print platform information | ||
run: uname -ms | ||
|
||
- name: Check out source code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install nix | ||
uses: cachix/install-nix-action@v25 | ||
with: | ||
install_url: https://releases.nixos.org/nix/nix-2.18.0/install | ||
|
||
- name: Use GitHub cache | ||
uses: DeterminateSystems/magic-nix-cache-action@main | ||
|
||
- name: Build nix package | ||
run: nix build -L .#lair-keystore | ||
|
||
- name: Setup tmate session | ||
if: failure() | ||
uses: mxschmitt/action-tmate@v3 |
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,68 @@ | ||
name: build and cache | ||
|
||
on: push | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref_name }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
build-holochain: | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, macos-latest, macos-13] | ||
fail-fast: false | ||
|
||
runs-on: ${{ matrix.os }} | ||
|
||
steps: | ||
- name: Print platform information | ||
run: uname -ms | ||
|
||
- name: Check out source code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install nix | ||
uses: cachix/install-nix-action@v25 | ||
with: | ||
install_url: https://releases.nixos.org/nix/nix-2.18.0/install | ||
|
||
- name: Use GitHub cache | ||
uses: DeterminateSystems/magic-nix-cache-action@main | ||
|
||
- name: Build nix package | ||
run: nix build -L .#holochain | ||
|
||
- name: Setup tmate session | ||
if: failure() | ||
uses: mxschmitt/action-tmate@v3 | ||
|
||
build-lair: | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, macos-latest, macos-13] | ||
fail-fast: false | ||
|
||
runs-on: ${{ matrix.os }} | ||
|
||
steps: | ||
- name: Print platform information | ||
run: uname -ms | ||
|
||
- name: Check out source code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install nix | ||
uses: cachix/install-nix-action@v25 | ||
with: | ||
install_url: https://releases.nixos.org/nix/nix-2.18.0/install | ||
|
||
- name: Use GitHub cache | ||
uses: DeterminateSystems/magic-nix-cache-action@main | ||
|
||
- name: Build nix package | ||
run: nix build -L .#lair-keystore | ||
|
||
- name: Setup tmate session | ||
if: failure() | ||
uses: mxschmitt/action-tmate@v3 |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.