-
Notifications
You must be signed in to change notification settings - Fork 3
47 lines (38 loc) · 1.03 KB
/
single_include_header.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
name: Generate single-include header
on: push
permissions:
contents: write
jobs:
generate_header:
runs-on: windows-2022
steps:
- name: Check out ECS
uses: actions/checkout@v4
- name: Check out TLS
uses: actions/checkout@v4
with:
repository: kgorking/tls
path: tls
- name: Configure, Generate header and module
shell: powershell
run: |
cd include/ecs
./make_single_header.ps1
cd ..
cd
- name: Upload changes
shell: powershell
run: |
git config --global user.name 'github_actions'
git config --global user.email '[email protected]'
git commit -am "Automated single-include header generation"
git push
run-msvc:
uses: ./.github/workflows/msvc.yml
needs: generate_header
run-gcc:
uses: ./.github/workflows/gcc.yml
needs: generate_header
run-clang:
uses: ./.github/workflows/clang.yml
needs: generate_header