-
Notifications
You must be signed in to change notification settings - Fork 0
66 lines (54 loc) · 1.75 KB
/
Copy pathcheck.yml
File metadata and controls
66 lines (54 loc) · 1.75 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
name: check
on:
push:
pull_request:
workflow_dispatch:
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
defaults:
run:
shell: bash -xe {0}
jobs:
check-dev-deps:
name: Check dev-deps.txt
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6
- uses: nixbuild/nix-quick-install-action@v34
with:
github_access_token: ${{ secrets.GITHUB_TOKEN }}
nix_conf: |
extra-substituters = https://obeli-sk.cachix.org
extra-trusted-public-keys = obeli-sk.cachix.org-1:31iM9GWSEhAXvvuTWQ7CvAcwvgRzsuJ9yJghywSd3Jw=
- name: Populate the Nix store
run: nix develop --command echo
- name: Regenerate dev-deps.txt
run: nix develop --command ./scripts/dev-deps.sh
- name: Check dev-deps.txt
run: |
cat dev-deps.txt
if ! git diff --quiet -- dev-deps.txt; then
echo "dev-deps.txt is stale:"
git diff -- dev-deps.txt
exit 1
fi
verify-deployment:
name: Verify deployment
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6
- uses: nixbuild/nix-quick-install-action@v34
with:
github_access_token: ${{ secrets.GITHUB_TOKEN }}
nix_conf: |
extra-substituters = https://obeli-sk.cachix.org
extra-trusted-public-keys = obeli-sk.cachix.org-1:31iM9GWSEhAXvvuTWQ7CvAcwvgRzsuJ9yJghywSd3Jw=
- name: Verify deployment.toml
run: |
nix develop --command obelisk deployment verify \
--server-config server.toml \
--deployment deployment.toml \
--allow-unavailable-runtime-config