-
Notifications
You must be signed in to change notification settings - Fork 32
191 lines (157 loc) · 4.53 KB
/
gcm_python.yml
File metadata and controls
191 lines (157 loc) · 4.53 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
# Copyright (c) Meta Platforms, Inc. and affiliates.
# All rights reserved.
name: GPU Cluster Monitoring Python CI
on:
push:
branches: [main]
pull_request:
permissions:
contents: read
jobs:
setup-venv:
strategy:
matrix:
os: [ubuntu-22.04, ubuntu-24.04]
runs-on: ${{ matrix.os }}
outputs:
cache-key: ${{ steps.cache-keys.outputs.cache-key }}
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- uses: actions/cache@v4
id: cache-venv
with:
path: ~/.cache/venv-ci
key: ${{ env.pythonLocation }}-${{ hashFiles('dev-requirements.txt') }}
- name: Install python dependencies
if: steps.cache-venv.outputs.cache-hit != 'true'
run: |
python -m venv ~/.cache/venv-ci
source ~/.cache/venv-ci/bin/activate
pip install -r dev-requirements.txt
build_deb:
needs: setup-venv
strategy:
matrix:
os: [ubuntu-22.04, ubuntu-24.04]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
# needed so that setuptools_scm can correctly figure out version at build
fetch-depth: 0
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Load cached venv
uses: actions/cache@v4
with:
path: ~/.cache/venv-ci
key: ${{ env.pythonLocation }}-${{ hashFiles('dev-requirements.txt') }}
- name: Install Rust
run: |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
cp -r $HOME/.cargo/bin/* $HOME/.cache/venv-ci/bin/
- name: Install build dependencies
run: |
sudo apt update --yes
sudo apt install --yes build-essential devscripts debhelper
- name: Setup build directory
run: echo "builddir=$(mktemp -d)" >> $GITHUB_ENV
- name: Build Debian
run: |
source ~/.cache/venv-ci/bin/activate
gcm/bin/build_deb.sh "${{ env.builddir }}"
nox-lint:
needs: setup-venv
strategy:
matrix:
os: [ubuntu-22.04, ubuntu-24.04]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Common Setup
uses: ./.github/actions/common-setup
- name: nox lint
run: |
source ~/.cache/venv-ci/bin/activate
nox -s lint
nox-tests:
needs: setup-venv
strategy:
matrix:
os: [ubuntu-22.04, ubuntu-24.04]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Common Setup
uses: ./.github/actions/common-setup
- name: nox tests
run: |
source ~/.cache/venv-ci/bin/activate
nox -s tests
nox-typecheck:
needs: setup-venv
strategy:
matrix:
os: [ubuntu-22.04, ubuntu-24.04]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Common Setup
uses: ./.github/actions/common-setup
- name: nox typecheck
run: |
source ~/.cache/venv-ci/bin/activate
nox -s typecheck
nox-format:
needs: setup-venv
strategy:
matrix:
os: [ubuntu-22.04, ubuntu-24.04]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Common Setup
uses: ./.github/actions/common-setup
- name: nox format
run: |
source ~/.cache/venv-ci/bin/activate
nox -s format
pyoxidizer-build-gcm:
needs: setup-venv
strategy:
matrix:
os: [ubuntu-22.04, ubuntu-24.04]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Common Setup
uses: ./.github/actions/common-setup
- name: Build gcm
run: |
source ~/.cache/venv-ci/bin/activate
make release/gcm
- name: Test built binary
run: ./build/x86_64-unknown-linux-gnu/release/install_gcm/gcm --help
pyoxidizer-build-health_checks:
needs: setup-venv
strategy:
matrix:
os: [ubuntu-22.04, ubuntu-24.04]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Common Setup
uses: ./.github/actions/common-setup
- name: Build health_checks
run: |
source ~/.cache/venv-ci/bin/activate
make release/health_checks
- name: Test built binary
run: ./build/x86_64-unknown-linux-gnu/release/install_hc/health_checks --help