-
Notifications
You must be signed in to change notification settings - Fork 54
51 lines (50 loc) · 1.38 KB
/
tilt.yaml
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
on:
pull_request:
paths:
- '.bingo/**'
- '.github/workflows/tilt.yaml'
- 'api/**'
- 'cmd/**'
- 'config/**'
- 'internal/**'
- 'pkg/**'
- 'Tiltfile'
merge_group:
jobs:
tilt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
repository: operator-framework/tilt-support
path: tilt-support
- uses: actions/checkout@v4
with:
path: operator-controller
- name: Get catalogd version
id: get-catalogd-version
run: |
cd operator-controller
echo "CATALOGD_VERSION=$(go list -mod=mod -m -f "{{.Version}}" github.com/operator-framework/catalogd)" >> "$GITHUB_OUTPUT"
- uses: actions/checkout@v4
with:
repository: operator-framework/catalogd
path: catalogd
ref: "${{ steps.get-catalogd-version.outputs.CATALOGD_VERSION }}"
- name: Install Go
uses: actions/setup-go@v5
with:
go-version-file: "operator-controller/go.mod"
- name: Install Tilt
run: |
TILT_VERSION="0.33.3"
curl -fsSL https://github.com/tilt-dev/tilt/releases/download/v$TILT_VERSION/tilt.$TILT_VERSION.linux.x86_64.tar.gz | \
tar -xzv -C /usr/local/bin tilt
- name: Set up kind
run: |
cd operator-controller
make kind-cluster
- name: Test Tilt
run: |
cd operator-controller
tilt ci