-
Notifications
You must be signed in to change notification settings - Fork 1
196 lines (172 loc) · 5.59 KB
/
Copy pathbuild.yml
File metadata and controls
196 lines (172 loc) · 5.59 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
name: Build and Test
on:
push:
paths-ignore:
- "README.md"
branches:
- main
tags:
- 'v*.*.*'
pull_request:
workflow_dispatch:
jobs:
build:
name: Build
runs-on: ${{ matrix.runner }}
env:
VERSION: ${{ github.ref_name }}
COMMIT: ${{ github.sha }}
BINARY_NAME: ${{ matrix.os == 'windows' && 'shimmy.exe' || 'shimmy' }}
strategy:
matrix:
include:
- { runner: macos-latest, os: darwin, arch: amd64 }
- { runner: macos-latest, os: darwin, arch: arm64 }
- { runner: ubuntu-latest, os: linux, arch: amd64, env: CGO_ENABLED=0 }
- { runner: ubuntu-latest, os: linux, arch: arm64, env: CGO_ENABLED=0 }
- { runner: ubuntu-latest, os: windows, arch: amd64, env: CGO_ENABLED=0 }
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: ./go.mod
- name: Install Dependencies
run: go mod download
- name: Run Build
env:
GOOS: ${{ matrix.os }}
GOARCH: ${{ matrix.arch }}
run: |
${{ matrix.env }} \
make build
- name: Upload binary
uses: actions/upload-artifact@v4
with:
name: shimmy-${{ matrix.os }}-${{ matrix.arch }}
path: ./bin/${{ env.BINARY_NAME }}
# TODO: Test on windows
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: ./go.mod
- name: Install Dependencies
run: go mod download
- name: Run Tests
run: go test -json ./...
# - name: Upload test results
# uses: actions/upload-artifact@v4
# with:
# name: Go-results
# path: TestResults.json
test-sandbox:
name: Sandbox Integration Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: ./go.mod
- name: Install Dependencies
run: go mod download
- name: Install nsjail
run: |
sudo apt-get update
sudo apt-get install -y \
autoconf bison flex g++ git \
libprotobuf-dev libnl-route-3-dev \
libtool pkg-config protobuf-compiler
git clone --depth=1 https://github.com/google/nsjail.git /tmp/nsjail
make -C /tmp/nsjail -j$(nproc)
sudo install -m 0755 /tmp/nsjail/nsjail /usr/sbin/nsjail
- name: Run sandbox integration tests
run: sudo -E go test -v -run 'TestSandboxedWorker' ./internal/execution/worker/...
build_docker:
name: Build Docker Image
runs-on: ubuntu-latest
needs: [test, test-sandbox, build]
concurrency:
group: ${{ github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' || github.ref_name != github.event.repository.default_branch }}
permissions:
contents: read
packages: write
id-token: write
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up QEMU
if: github.ref_name == github.event.repository.default_branch || github.ref_type == 'tag'
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx (QEMU)
uses: docker/setup-buildx-action@v3
- name: Login to Github Packages
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata for Docker
id: meta
uses: docker/metadata-action@v5
with:
tags: |
type=schedule
type=ref,event=branch
type=ref,event=tag
type=ref,event=pr
type=raw,value=latest,enable=${{ github.ref_type == 'tag' }}
type=edge,branch=main
images: |
ghcr.io/${{ github.repository }}
- name: Build and push
uses: docker/build-push-action@v4
with:
context: .
push: ${{ !(github.event_name == 'push' && github.ref_type != 'tag' && github.ref_name != github.event.repository.default_branch) }}
platforms: ${{ (github.ref_type == 'tag' || github.ref_name == github.event.repository.default_branch) && 'linux/amd64,linux/arm64' || 'linux/amd64' }}
provenance: false
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max,ignore-error=true
build-args: |
VERSION=${{ github.ref_name }}
COMMIT=${{ github.sha }}
build_base_images:
name: Build Base Images
runs-on: ubuntu-latest
needs: build_docker
if: github.event_name == 'push' && (github.ref_name == github.event.repository.default_branch || github.ref_type == 'tag')
concurrency:
group: ${{ github.ref }}
cancel-in-progress: false
permissions:
contents: read
packages: write
id-token: write
steps:
- name: Repository Dispatch
env:
GH_TOKEN: ${{ secrets.SHIMMY_DEPLOY_TOKEN }}
run: |
gh api repos/${{ github.repository_owner }}/evaluation-function-base/dispatches \
--method POST \
-f event_type=trigger-build