-
Notifications
You must be signed in to change notification settings - Fork 2
74 lines (74 loc) · 2.39 KB
/
ci.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
name: CI
on: [push, pull_request]
jobs:
build-test:
runs-on: windows-latest
permissions:
contents: write
defaults:
run:
shell: bash --noprofile --norc -e -o pipefail -o igncr {0}
matrix:
build-target: [all,html,man,info,pdf]
fast-fail: false
env:
_BUILD_TARGET: ${{ matrix.build-target }}
PATH: C:\cygwin\bin
steps:
- name: Install Cygwin Git and cygport
uses: cygwin/cygwin-install-action@v2
with:
packages: git cygport
timeout-minutes: 10
- name: Manually configure safe.directory
run: git config --global --add safe.directory '*'
timeout-minutes: 1
- name: Checkout
uses: actions/checkout@v3
with:
set-safe-directory: false # actions/checkout otherwise tries to use the wrong config file, per actions/checkout#767
fetch-depth: 0 # Need this to push to Cygwin Git mirror
timeout-minutes: 1
- name: Load variables from the cygport file
run: |
eval "$(cygport git.cygport vars BUILD_REQUIRES PVR)"
printf 'BUILD_REQUIRES=%s\n' "$BUILD_REQUIRES" >>"$GITHUB_ENV"
printf 'PVR=%s\n' "$PVR" >>"$GITHUB_ENV"
timeout-minutes: 1
- name: Install Cygwin build requirements
uses: cygwin/cygwin-install-action@v2
with:
packages: ${{ env.BUILD_REQUIRES }}
timeout-minutes: 30
- name: Generate cygcheck output
if: always()
run: cygcheck -srv >/var/log/cygcheck.out
timeout-minutes: 5
- name: Store Cygwin logs
if: always()
uses: actions/upload-artifact@v3
with:
name: cygwin-logs
path: 'C:\cygwin\var\log\'
timeout-minutes: 5
- name: Cygport download
run: cygport git.cygport download
timeout-minutes: 5
- name: Cygport prep
run: cygport git.cygport prep
timeout-minutes: 1
- name: Cygport compile
run: cygport git.cygport compile
timeout-minutes: 30
- name: Tar up build results
if: always()
run: tar -caf git-build-results.txz git-*-*.*/
timeout-minutes: 10
- name: Store build results
if: always()
uses: actions/upload-artifact@v3
with:
name: build-results
path: git-build-results.txz
if-no-files-found: error
timeout-minutes: 5