-
Notifications
You must be signed in to change notification settings - Fork 20
148 lines (146 loc) · 3.97 KB
/
cygwin.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
name: Cygwin
on:
push:
branches:
- master
- 'cygport-*'
- 'topic/**'
workflow_dispatch:
env:
CASE_INSENSITIVE: 1
jobs:
cygport:
name: cygport
runs-on: windows-latest
steps:
- name: Turn off line ending conversion in git
run: |
git config --global core.autocrlf false
git config --global core.eol lf
- uses: actions/checkout@v1
with:
submodules: true
- uses: actions/cache@v3
with:
path: C:\cygwin-packages
key: cygwin-packages-${{ hashFiles('C:\cygwin-packages\**') }}
restore-keys: cygwin-packages-
- name: Fetch Cygwin installer
run: |
Invoke-WebRequest https://cygwin.com/setup-x86_64.exe -OutFile C:\setup.exe
shell: powershell
# installer should be cacheable
- name: Install Cygwin
run: |
c:\setup.exe -qgnO -s http://mirrors.kernel.org/sourceware/cygwin/ -l C:\cygwin-packages\ -P ^
R,^
aspell,^
automake,^
bison,^
cmake,^
cvs,^
diffstat,^
dos2unix,^
extra-cmake-modules,^
flex,^
flexdll,^
fontforge,^
gcc-g++,^
git,^
git-archive-all,^
gnome-common,^
gobject-introspection,^
help2man,^
httpd-devel,^
kf5-kdoctools,^
libGL-devel,^
libGeoIP-devel,^
libKF5XmlGui-devel,^
libQt5Core-devel,^
libQt5Svg-devel,^
libQtCore4-devel,^
libQtGui4-devel,^
libQtNetwork4-devel,^
libQtTest4-devel,^
libQtXml4-devel,^
libRmath,^
libbz2-devel,^
libcairomm1.0-devel,^
libcrypt-devel,^
libgdk_pixbuf2.0-devel,^
libgirepository1.0-devel,^
libglibmm2.4-devel,^
libicu-devel,^
liblua-devel,^
liblzma-devel,^
libnotify-devel,^
libpango1.0-devel,^
libpcre2-devel,^
libqca-devel,^
libqca-qt5-devel,^
libtirpc-devel,^
libxfce4ui1-devel,^
libxfconf0-devel,^
lndir,^
lua,^
make,^
mate-common,^
mercurial,^
meson,^
mingw64-i686-gcc-core,^
mingw64-i686-qt5-base,^
mingw64-i686-qt5-tools,^
mm-common,^
monotone,^
ninja,^
ocaml,^
ocaml-dune,^
ocaml-findlib,^
patch,^
perl,^
perl-Module-Build,^
php-PEAR,^
python38-devel,^
python27-wheel,^
python37-pip,^
python37-setuptools,^
python37-wheel,^
python38-pip,^
python38-setuptools,^
python38-wheel,^
python38-pygments,^
python39-pip,^
python39-setuptools,^
python39-wheel,^
robodoc,^
ruby,^
ruby-rack,^
subversion,^
unzip,^
xfce4-dev-tools,^
xfce4-panel-devel
shell: cmd
- name: Set PATH
run: echo "PATH=C:\cygwin64\bin;C:\cygwin64\lib\lapack;%SYSTEMROOT%\system32" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
- name: Fixup Cygwin installation
run: |
bash --login
bash -c '/usr/sbin/alternatives --set python /usr/bin/python3.8'
bash -c '/usr/sbin/alternatives --set python3 /usr/bin/python3.8'
bash -c '/usr/sbin/alternatives --set python3-config /usr/bin/python3.8-config'
bash -c 'sed -i s#/usr/bin/python\$#/usr/bin/python3.9# /usr/bin/pip3.9'
bash -c 'git config --system --add safe.directory /cygdrive/d/a/cygport/cygport'
bash -c 'git config --system --add safe.directory /cygdrive/d/a/cygport/cygport/data/gnuconfig'
continue-on-error: true
- name: Build
run: |
bash -c 'meson _build && ninja -C _build'
- name: Test
run: |
bash -c 'meson test -C _build --print-errorlogs'
- name: Upload test logs
uses: actions/upload-artifact@v3
with:
name: testlogs
path: _build/meson-logs/*
if: ${{ !cancelled() }}