-
Notifications
You must be signed in to change notification settings - Fork 1.4k
42 lines (37 loc) · 1.05 KB
/
integration-tests.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
name: Integration tests
on:
push:
branches: ['main']
pull_request:
branches: ['main']
permissions:
contents: read
jobs:
tests:
runs-on: ubuntu-latest
env:
IMAGE_REPO: 'localhost:5000'
REGISTRY: 'localhost:5000'
DOCKER_BUILDKIT: '0'
strategy:
fail-fast: false
matrix:
make-target:
- integration-test-layers
- integration-test-misc
- integration-test-run
- k8s-executor-build-push integration-test-k8s
steps:
- name: Maximize build space
uses: AdityaGarg8/remove-unwanted-software@v4
with:
remove-android: 'true'
remove-dotnet: 'true'
remove-haskell: 'true'
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
with:
go-version: '1.22'
- uses: actions/checkout@b0e28b5ac45a892f91e7d036f8200cf5ed489415 # v3
- uses: docker/setup-buildx-action@4fd812986e6c8c2a69e18311145f9371337f27d4 # v1
- run: make install-container-diff k3s-setup
- run: make ${{ matrix.make-target }}