-
Notifications
You must be signed in to change notification settings - Fork 1.8k
73 lines (60 loc) · 1.64 KB
/
os-compatibility-test.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
name: OS Compatibility Test
run-name: OS Compatibility Test
on:
pull_request:
paths-ignore:
- 'docs/**'
- 'web/**'
- 'rfd/**'
- '**/*.md*'
merge_group:
paths-ignore:
- 'docs/**'
- 'web/**'
- 'rfd/**'
- '**/*.md*'
jobs:
build:
name: OS Compatibility Build
if: ${{ !startsWith(github.head_ref, 'dependabot/') }}
runs-on: ubuntu-22.04-16core
permissions:
contents: read
container:
image: ghcr.io/gravitational/teleport-buildbox-centos7:teleport15-amd64
env:
GOCACHE: /tmp/gocache
WEBASSETS_SKIP_BUILD: 1
steps:
- name: Checkout Teleport
uses: actions/checkout@v3 # Cannot upgrade to v4 while this runs in centos:7 due to nodejs GLIBC incompatibility
- name: Prepare workspace
uses: ./.github/actions/prepare-workspace
- name: Run make
run: |
make -j"$(nproc)" binaries
- name: Upload binaries
uses: actions/upload-artifact@v3
with:
name: build
path: ${{ github.workspace }}/build/
test-compat:
needs: build
name: OS Compatibility Test
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Download binaries
uses: actions/download-artifact@v3
with:
name: build
path: ${{ github.workspace }}/build
- name: chmod +x
run: chmod +x ${GITHUB_WORKSPACE}/build/*
- name: Run compat matrix
timeout-minutes: 10
run: |
cd ${GITHUB_WORKSPACE} && ./build.assets/build-test-compat.sh