-
-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (31 loc) · 839 Bytes
/
test-build-system.yml
File metadata and controls
37 lines (31 loc) · 839 Bytes
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
# This workflow will test the build system (validate symlinks, index generator, cleaning, installing / uninstalling, full build)
name: Complete build system test
on:
push:
branches: '**'
pull_request:
branches: '**'
release:
types: [published]
jobs:
build:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.13
uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Install build dependencies
run: |
sudo apt-get install --no-install-recommends make
- name: Check all symlinks are valid
run: |
make check
- name: Test index generator
run: |
INSTALL_DIR=./ make index
- name: Test install and uninstall targets
run: |
sudo make install
sudo make uninstall