-
Notifications
You must be signed in to change notification settings - Fork 0
59 lines (53 loc) · 1.76 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
54
55
56
57
58
59
name: Bootstrap
"on":
push:
branches:
- master
# To test on a new OS version, update the 'os_version' field.
jobs:
bootstrap_macos:
strategy:
max-parallel: 1
fail-fast: true
matrix:
platform: ['macos']
bootstrap_type: ['machine+dotfiles']
user_profile: ['admin', 'dev_single'] # debug: 'machine','dotfiles'
include:
- os_version: 'macos-13'
platform: 'macos'
name: 'Bootstrap ${{ matrix.platform }}/${{ matrix.os_version }} machine'
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 }}
cancel-in-progress: true
bootstrap_linux:
strategy:
max-parallel: 1
fail-fast: true
matrix:
platform: ['linux']
bootstrap_type: ['machine+dotfiles']
user_profile: ['admin', 'dev_single'] # debug: 'machine','dotfiles'
include:
- os_version: 'fedora:40'
platform: 'linux'
#- os_version: 'archlinux/archlinux:latest'
# platform: 'linux'
name: '${{ matrix.platform }}/${{ matrix.os_version }}'
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 }}
cancel-in-progress: true