-
Notifications
You must be signed in to change notification settings - Fork 0
53 lines (47 loc) · 1.81 KB
/
test_bootstrap.yml
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
name: Bootstrap
"on":
push:
branches:
- master
# To test on a new OS version, update the 'os_version' field.
jobs:
bootstrap_macos:
strategy:
max-parallel: 16
fail-fast: false
matrix:
platform: ['macos']
bootstrap_type: ['machine+dotfiles']
user_profile: ['admin', 'dev_single'] # debug: 'machine','dotfiles'
os_version: ['macos-13', 'macos-14']
name: '${{ matrix.platform }}/${{ matrix.os_version }}/${{ matrix.user_profile }}'
secrets: inherit
uses: davidandreoletti/dotfiles/.github/workflows/bootstrap_on_macos.yaml@master
with:
platform: ${{ matrix.platform }}
bootstrap_type: ${{ matrix.bootstrap_type }}
user_profile: ${{ matrix.user_profile }}
os_version: ${{ matrix.os_version }}
concurrency:
group: ${{ matrix.platform }}-${{ matrix.os_version}}-${{ matrix.bootstrap_type}}-${{ matrix.user_profile }}
cancel-in-progress: true
bootstrap_linux:
strategy:
max-parallel: 16
fail-fast: false
matrix:
platform: ['linux']
bootstrap_type: ['machine+dotfiles']
user_profile: ['admin', 'dev_single'] # debug: 'machine','dotfiles'
os_version: ['fedora:39', 'fedora:40', 'archlinux:latest']
name: '${{ matrix.platform }}/${{ matrix.os_version }}/${{ matrix.user_profile }}'
secrets: inherit
uses: davidandreoletti/dotfiles/.github/workflows/bootstrap_on_linux.yaml@master
with:
platform: ${{ matrix.platform }}
bootstrap_type: ${{ matrix.bootstrap_type }}
user_profile: ${{ matrix.user_profile }}
os_version: ${{ matrix.os_version }}
concurrency:
group: ${{ matrix.platform }}-${{ matrix.os_version}}-${{ matrix.bootstrap_type}}-${{ matrix.user_profile }}
cancel-in-progress: true