-
Notifications
You must be signed in to change notification settings - Fork 1
84 lines (73 loc) · 2.76 KB
/
Copy pathcheck-test-e2e.yml
File metadata and controls
84 lines (73 loc) · 2.76 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
name: check-test-e2e
permissions:
contents: read
issues: read
checks: write
pull-requests: write
on:
push:
pull_request:
workflow_dispatch:
inputs:
ref:
description: "The ref (branch or SHA) to process"
required: false
type: string
concurrency:
group: global-singleton-e2e
cancel-in-progress: false
defaults:
run:
shell: bash -xe {0}
jobs:
check-e2e:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v7
with:
ref: ${{ github.event.inputs.ref }} # Use the ref if provided, otherwise defaults to the current branch/commit
- uses: nixbuild/nix-quick-install-action@v35
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: Build Rust WASM components
run: nix develop --command just rust
- name: Verify obelisk-local.toml
env:
GITHUB_TOKEN_STARGAZERS: ${{ secrets.E2E_GITHUB_TOKEN }}
TEST_GITHUB_LOGIN: ${{ secrets.TEST_GITHUB_LOGIN }}
TURSO_TOKEN: ${{ secrets.E2E_TURSO_TOKEN }}
TURSO_LOCATION: ${{ secrets.E2E_TURSO_LOCATION }}
run: |
nix develop --command ./scripts/test-e2e.sh ./obelisk-local.toml truncate
- name: Verify obelisk-oci.toml
env:
GITHUB_TOKEN_STARGAZERS: ${{ secrets.E2E_GITHUB_TOKEN }}
TEST_GITHUB_LOGIN: ${{ secrets.TEST_GITHUB_LOGIN }}
TURSO_TOKEN: ${{ secrets.E2E_TURSO_TOKEN }}
TURSO_LOCATION: ${{ secrets.E2E_TURSO_LOCATION }}
run: |
nix develop --command ./scripts/test-e2e.sh obelisk-oci.toml truncate
- name: Verify obelisk-local-js-all.toml
env:
GITHUB_TOKEN_STARGAZERS: ${{ secrets.E2E_GITHUB_TOKEN }}
TEST_GITHUB_LOGIN: ${{ secrets.TEST_GITHUB_LOGIN }}
TURSO_TOKEN: ${{ secrets.E2E_TURSO_TOKEN }}
TURSO_LOCATION: ${{ secrets.E2E_TURSO_LOCATION }}
run: |
nix develop --command ./scripts/test-e2e.sh ./obelisk-local-js-all.toml truncate
- name: Build Go WASM components
run: nix develop --command ./scripts/build-components-go.sh
- name: Verify obelisk-local-go-all.toml
env:
GITHUB_TOKEN_STARGAZERS: ${{ secrets.E2E_GITHUB_TOKEN }}
TEST_GITHUB_LOGIN: ${{ secrets.TEST_GITHUB_LOGIN }}
TURSO_TOKEN: ${{ secrets.E2E_TURSO_TOKEN }}
TURSO_LOCATION: ${{ secrets.E2E_TURSO_LOCATION }}
run: |
nix develop --command ./scripts/test-e2e.sh ./obelisk-local-go-all.toml truncate