-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (43 loc) · 1.65 KB
/
devshell.yml
File metadata and controls
43 lines (43 loc) · 1.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# This file was autogenerated by actions.nix. Do not edit it manually.
# To make changes, edit the workflow definition in your flake's actions-nix configuration
# (typically under flake.actions-nix.workflows.".github/workflows/devshell.yml") and run:
# nix run .#render-workflows
# Or commit to trigger the pre-commit hook if enabled.
jobs:
build-dev-shell:
name: Build devShell
runs-on: macos-15
steps:
- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
- name: Install Lix
uses: samueldr/lix-gha-installer-action@7b7f14d320d6aacfb65bd1ef761566b3b69e474c
with:
extra_nix_config: |-
accept-flake-config = true
max-jobs = auto
- name: Add SSH keys to ssh-agent
uses: webfactory/ssh-agent@e83874834305fe9a4a2997156cb26c5de65a8555
with:
ssh-private-key: |-
${{ secrets.SECRETS_DEPLOY_KEY }}
${{ secrets.PRAGMATAPRO_DEPLOY_KEY }}
- name: Setup Attic cache
uses: ryanccn/attic-action@1887fd507f03327c96c64cca30118c96eb17fdad
with:
cache: tilde
endpoint: https://cache.e10.camp
token: ${{ secrets.ATTIC_TOKEN }}
- name: Use Cachix store
uses: cachix/cachix-action@1eb2ef646ac0255473d23a5907ad7b04ce94065c
with:
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }}
installCommand: nix profile install github:NixOS/nixpkgs/nixpkgs-unstable#cachix
name: tilde
- name: Build aarch64-darwin shell
run: nix build .#devShells.aarch64-darwin.default --impure --keep-going --print-build-logs
--show-trace --verbose
name: devShell
'on':
push: {}
workflow_dispatch: {}