-
Notifications
You must be signed in to change notification settings - Fork 2
72 lines (63 loc) · 1.63 KB
/
build.yml
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
name: Build Examples
on:
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review
paths:
- "**.go"
- "**.mod"
- "**.sum"
- "**.ts"
- "**.json"
- .github/workflows/*
schedule:
- cron: 0 5 * * *
permissions:
contents: read
jobs:
get-dirs:
name: search
runs-on: ubuntu-latest
outputs:
dirs: ${{ steps.get-dirs.outputs.dirs }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Search for modus.json files
id: get-dirs
run: |
echo "dirs=$(find . -name 'modus.json' -exec dirname {} \; | sed 's|^\./||' | jq -Rsc 'split("\n")[:-1]')" >> ${GITHUB_OUTPUT}
build:
needs: get-dirs
name: build
runs-on: warp-ubuntu-latest-x64-4x
strategy:
matrix:
dir: ${{ fromJson(needs.get-dirs.outputs.dirs) }}
defaults:
run:
working-directory: ${{ matrix.dir }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: "22"
- name: Get Go Toolchain version
id: toolchain
run: echo "version=$(sed -ne '/^toolchain /s/^toolchain go//p' go.mod)" >> "$GITHUB_OUTPUT"
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ steps.toolchain.outputs.version }}
- name: Set up TinyGo
uses: acifani/setup-tinygo@v2
with:
tinygo-version: 0.34.0
- name: Build project
run: npx -p @hypermode/modus-cli -y modus build
shell: bash