File tree Expand file tree Collapse file tree 2 files changed +24
-0
lines changed
src/ci/docker/mingw-check Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -176,6 +176,8 @@ matrix:
176
176
if : branch = auto
177
177
- env : IMAGE=x86_64-gnu-distcheck
178
178
if : branch = auto
179
+ - env : IMAGE=mingw-check
180
+ if : type = pull_request OR branch = auto
179
181
180
182
- stage : publish toolstate
181
183
if : branch = master AND type = push
Original file line number Diff line number Diff line change
1
+ FROM ubuntu:16.04
2
+
3
+ RUN apt-get update && apt-get install -y --no-install-recommends \
4
+ g++ \
5
+ make \
6
+ file \
7
+ curl \
8
+ ca-certificates \
9
+ python2.7 \
10
+ git \
11
+ cmake \
12
+ sudo \
13
+ gdb \
14
+ xz-utils \
15
+ libssl-dev \
16
+ pkg-config \
17
+ mingw-w64
18
+
19
+ COPY scripts/sccache.sh /scripts/
20
+ RUN sh /scripts/sccache.sh
21
+
22
+ ENV SCRIPT python2.7 ../x.py check --target=i686-pc-windows-gnu --host=i686-pc-windows-gnu
You can’t perform that action at this time.
0 commit comments