Skip to content

Commit 0af6b38

Browse files
committed
TMP2
1 parent 209ecbe commit 0af6b38

File tree

1 file changed

+102
-102
lines changed

1 file changed

+102
-102
lines changed

.github/workflows/ci.yml

Lines changed: 102 additions & 102 deletions
Original file line numberDiff line numberDiff line change
@@ -38,115 +38,115 @@ jobs:
3838
fail-fast: false
3939
matrix:
4040
include:
41-
- name: Test macOS 11
42-
os: macos-11
43-
target: x86_64-apple-darwin
44-
- name: Test macOS 12
45-
os: macos-12
46-
target: x86_64-apple-darwin
47-
- name: Build macOS AArch64
48-
os: macos-latest
49-
target: aarch64-apple-darwin
50-
test-args: --no-run
51-
- name: Test macOS old SDK
52-
os: macos-latest
53-
target: x86_64-apple-darwin
54-
# Oldest macOS version we support
55-
sdk: "10.7"
41+
# - name: Test macOS 11
42+
# os: macos-11
43+
# target: x86_64-apple-darwin
44+
# - name: Test macOS 12
45+
# os: macos-12
46+
# target: x86_64-apple-darwin
47+
# - name: Build macOS AArch64
48+
# os: macos-latest
49+
# target: aarch64-apple-darwin
50+
# test-args: --no-run
51+
# - name: Test macOS old SDK
52+
# os: macos-latest
53+
# target: x86_64-apple-darwin
54+
# # Oldest macOS version we support
55+
# sdk: "10.7"
5656
- name: Test macOS nightly (w. ui tests)
5757
os: macos-latest
5858
target: x86_64-apple-darwin
5959
rust:
6060
toolchain: nightly
6161
# Run UI tests on nightly to help find regressions
6262
ui: true
63-
- name: Build macOS 32bit
64-
os: macos-latest
65-
target: i686-apple-darwin
66-
rust:
67-
toolchain: nightly
68-
target: x86_64-apple-darwin
69-
components: clippy, rust-src
70-
args: -Zbuild-std -Zdoctest-xcompile
71-
# 32-bit support was removed in 10.15, so we can't test the
72-
# binary, only build it
73-
test-args: --no-run
74-
# Newest SDK that supports 32-bit
75-
sdk: "10.13"
76-
- name: Test GNUStep with libobjc2 v1.9
77-
os: ubuntu-latest
78-
target: x86_64-unknown-linux-gnu
79-
runtime: gnustep-1-9
80-
libobjc2: "1.9"
81-
- name: Test GNUStep with libobjc2 v2.0
82-
# Fails for some reason on Ubuntu 22
83-
os: ubuntu-20.04
84-
target: x86_64-unknown-linux-gnu
85-
runtime: gnustep-2-0
86-
libobjc2: "2.0"
87-
- name: Test GNUStep with libobjc2 v2.1 on nightly
88-
os: ubuntu-latest
89-
target: x86_64-unknown-linux-gnu
90-
rust:
91-
toolchain: nightly
92-
runtime: gnustep-2-1
93-
libobjc2: "2.1"
94-
fuzz: true
95-
- name: Test GNUStep 32bit
96-
# Ubuntu 22 image doesn't have the required C++ libraries
97-
# installed for 32-bit
98-
os: ubuntu-20.04
99-
target: i686-unknown-linux-gnu
100-
cflags: -m32
101-
configureflags: --target=x86-pc-linux-gnu
102-
runtime: gnustep-1-9
103-
libobjc2: "1.9"
104-
- name: Test iOS simulator x86 64bit
105-
os: macos-11
106-
target: x86_64-apple-ios
107-
dinghy: true
108-
- name: Build iOS simulator ARM64
109-
os: macos-latest
110-
target: aarch64-apple-ios-sim
111-
test-args: --no-run
112-
- name: Build iOS ARM64
113-
os: macos-latest
114-
target: aarch64-apple-ios
115-
test-args: --no-run
116-
- name: Build iOS ARMv7
117-
os: macos-latest
118-
target: armv7-apple-ios
119-
rust:
120-
toolchain: nightly
121-
target: x86_64-apple-darwin
122-
components: clippy, rust-src
123-
args: -Zbuild-std -Zdoctest-xcompile
124-
test-args: --no-run
125-
- name: Build iOS ARMv7s
126-
os: macos-latest
127-
target: armv7s-apple-ios
128-
rust:
129-
toolchain: nightly
130-
target: x86_64-apple-darwin
131-
components: clippy, rust-src
132-
args: -Zbuild-std -Zdoctest-xcompile
133-
test-args: --no-run
134-
- name: Build iOS 32bit x86
135-
os: macos-latest
136-
target: i386-apple-ios
137-
rust:
138-
toolchain: nightly
139-
target: x86_64-apple-darwin
140-
components: clippy, rust-src
141-
args: -Zbuild-std -Zdoctest-xcompile
142-
test-args: --no-run
143-
- name: Test Compiler-RT
144-
os: ubuntu-latest
145-
target: x86_64-unknown-linux-gnu
146-
runtime: compiler-rt
147-
args: -p block-sys -p block2
148-
features: ' '
149-
unstable-features: ' '
63+
# - name: Build macOS 32bit
64+
# os: macos-latest
65+
# target: i686-apple-darwin
66+
# rust:
67+
# toolchain: nightly
68+
# target: x86_64-apple-darwin
69+
# components: clippy, rust-src
70+
# args: -Zbuild-std -Zdoctest-xcompile
71+
# # 32-bit support was removed in 10.15, so we can't test the
72+
# # binary, only build it
73+
# test-args: --no-run
74+
# # Newest SDK that supports 32-bit
75+
# sdk: "10.13"
76+
# - name: Test GNUStep with libobjc2 v1.9
77+
# os: ubuntu-latest
78+
# target: x86_64-unknown-linux-gnu
79+
# runtime: gnustep-1-9
80+
# libobjc2: "1.9"
81+
# - name: Test GNUStep with libobjc2 v2.0
82+
# # Fails for some reason on Ubuntu 22
83+
# os: ubuntu-20.04
84+
# target: x86_64-unknown-linux-gnu
85+
# runtime: gnustep-2-0
86+
# libobjc2: "2.0"
87+
# - name: Test GNUStep with libobjc2 v2.1 on nightly
88+
# os: ubuntu-latest
89+
# target: x86_64-unknown-linux-gnu
90+
# rust:
91+
# toolchain: nightly
92+
# runtime: gnustep-2-1
93+
# libobjc2: "2.1"
94+
# fuzz: true
95+
# - name: Test GNUStep 32bit
96+
# # Ubuntu 22 image doesn't have the required C++ libraries
97+
# # installed for 32-bit
98+
# os: ubuntu-20.04
99+
# target: i686-unknown-linux-gnu
100+
# cflags: -m32
101+
# configureflags: --target=x86-pc-linux-gnu
102+
# runtime: gnustep-1-9
103+
# libobjc2: "1.9"
104+
# - name: Test iOS simulator x86 64bit
105+
# os: macos-11
106+
# target: x86_64-apple-ios
107+
# dinghy: true
108+
# - name: Build iOS simulator ARM64
109+
# os: macos-latest
110+
# target: aarch64-apple-ios-sim
111+
# test-args: --no-run
112+
# - name: Build iOS ARM64
113+
# os: macos-latest
114+
# target: aarch64-apple-ios
115+
# test-args: --no-run
116+
# - name: Build iOS ARMv7
117+
# os: macos-latest
118+
# target: armv7-apple-ios
119+
# rust:
120+
# toolchain: nightly
121+
# target: x86_64-apple-darwin
122+
# components: clippy, rust-src
123+
# args: -Zbuild-std -Zdoctest-xcompile
124+
# test-args: --no-run
125+
# - name: Build iOS ARMv7s
126+
# os: macos-latest
127+
# target: armv7s-apple-ios
128+
# rust:
129+
# toolchain: nightly
130+
# target: x86_64-apple-darwin
131+
# components: clippy, rust-src
132+
# args: -Zbuild-std -Zdoctest-xcompile
133+
# test-args: --no-run
134+
# - name: Build iOS 32bit x86
135+
# os: macos-latest
136+
# target: i386-apple-ios
137+
# rust:
138+
# toolchain: nightly
139+
# target: x86_64-apple-darwin
140+
# components: clippy, rust-src
141+
# args: -Zbuild-std -Zdoctest-xcompile
142+
# test-args: --no-run
143+
# - name: Test Compiler-RT
144+
# os: ubuntu-latest
145+
# target: x86_64-unknown-linux-gnu
146+
# runtime: compiler-rt
147+
# args: -p block-sys -p block2
148+
# features: ' '
149+
# unstable-features: ' '
150150

151151
env:
152152
CARGO_BUILD_TARGET: ${{ matrix.target }}

0 commit comments

Comments
 (0)