File tree 5 files changed +13
-12
lines changed
5 files changed +13
-12
lines changed Original file line number Diff line number Diff line change 56
56
- name : mingw-check-tidy
57
57
os : ubuntu-20.04-4core-16gb
58
58
env : {}
59
- - name : x86_64-gnu-llvm-15
59
+ - name : x86_64-gnu
60
60
env :
61
61
ENABLE_GCC_CODEGEN : " 1"
62
62
os : ubuntu-20.04-16core-64gb
Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ ARG DEBIAN_FRONTEND=noninteractive
4
4
5
5
RUN apt-get update && apt-get install -y --no-install-recommends \
6
6
g++ \
7
- gcc-multilib \
8
7
make \
9
8
ninja-build \
10
9
file \
@@ -26,11 +25,6 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
26
25
mingw-w64 \
27
26
&& rm -rf /var/lib/apt/lists/*
28
27
29
- # Install powershell (universal package) so we can test x.ps1 on Linux
30
- RUN curl -sL "https://github.com/PowerShell/PowerShell/releases/download/v7.3.1/powershell_7.3.1-1.deb_amd64.deb" > powershell.deb && \
31
- dpkg -i powershell.deb && \
32
- rm -f powershell.deb
33
-
34
28
COPY scripts/sccache.sh /scripts/
35
29
RUN sh /scripts/sccache.sh
36
30
@@ -45,6 +39,4 @@ ENV RUST_CONFIGURE_ARGS \
45
39
--enable-llvm-link-shared \
46
40
--set rust.thin-lto-import-instr-limit=10
47
41
48
- COPY host-x86_64/x86_64-gnu-llvm-15/script.sh /tmp/
49
-
50
- ENV SCRIPT /tmp/script.sh
42
+ ENV SCRIPT ../x.py --stage 2 test
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ FROM ubuntu:22.04
3
3
ARG DEBIAN_FRONTEND=noninteractive
4
4
RUN apt-get update && apt-get install -y --no-install-recommends \
5
5
g++ \
6
+ gcc-multilib \
6
7
make \
7
8
ninja-build \
8
9
file \
@@ -19,6 +20,11 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
19
20
mingw-w64 \
20
21
&& rm -rf /var/lib/apt/lists/*
21
22
23
+ # Install powershell (universal package) so we can test x.ps1 on Linux
24
+ RUN curl -sL "https://github.com/PowerShell/PowerShell/releases/download/v7.3.1/powershell_7.3.1-1.deb_amd64.deb" > powershell.deb && \
25
+ dpkg -i powershell.deb && \
26
+ rm -f powershell.deb
27
+
22
28
COPY scripts/sccache.sh /scripts/
23
29
RUN sh /scripts/sccache.sh
24
30
@@ -27,4 +33,7 @@ ENV RUST_CONFIGURE_ARGS \
27
33
--enable-sanitizers \
28
34
--enable-profiler \
29
35
--enable-compiler-docs
30
- ENV SCRIPT python3 ../x.py --stage 2 test
36
+
37
+ COPY host-x86_64/x86_64-gnu/script.sh /tmp/
38
+
39
+ ENV SCRIPT /tmp/script.sh
File renamed without changes.
Original file line number Diff line number Diff line change @@ -334,7 +334,7 @@ jobs:
334
334
- name : mingw-check-tidy
335
335
<< : *job-linux-4c
336
336
337
- - name : x86_64-gnu-llvm-15
337
+ - name : x86_64-gnu
338
338
env :
339
339
ENABLE_GCC_CODEGEN : " 1"
340
340
<< : *job-linux-16c
You can’t perform that action at this time.
0 commit comments