@@ -22,18 +22,18 @@ jobs:
22
22
rust : beta
23
23
- os : ubuntu-20.04
24
24
rust : nightly
25
- - os : macos-latest
26
- rust : stable
27
- - os : macos-latest
28
- rust : nightly
25
+ # - os: macos-latest
26
+ # rust: stable
27
+ # - os: macos-latest
28
+ # rust: nightly
29
29
# Note that these are on nightly due to rust-lang/rust#63700 not being
30
30
# on stable yet
31
- - os : windows-latest
32
- rust : stable-x86_64-msvc
33
- - os : windows-latest
34
- rust : stable-i686-msvc
35
- - os : windows-latest
36
- rust : stable-x86_64-gnu
31
+ # - os: windows-latest
32
+ # rust: stable-x86_64-msvc
33
+ # - os: windows-latest
34
+ # rust: stable-i686-msvc
35
+ # - os: windows-latest
36
+ # rust: stable-x86_64-gnu
37
37
steps :
38
38
- uses : actions/checkout@v3
39
39
with :
@@ -115,77 +115,77 @@ jobs:
115
115
- run : cargo build --manifest-path crates/as-if-std/Cargo.toml
116
116
- run : cargo build --manifest-path crates/as-if-std/Cargo.toml --no-default-features
117
117
118
- windows_arm64 :
119
- name : Windows AArch64
120
- runs-on : windows-latest
121
- steps :
122
- - uses : actions/checkout@v3
123
- with :
124
- submodules : true
125
- - name : Install Rust
126
- run : rustup update stable --no-self-update && rustup default stable
127
- shell : bash
128
- - run : echo RUSTFLAGS=-Dwarnings >> $GITHUB_ENV
129
- shell : bash
130
- - run : rustup target add aarch64-pc-windows-msvc
131
- - run : cargo test --no-run --target aarch64-pc-windows-msvc
132
- - run : cargo test --no-run --target aarch64-pc-windows-msvc --features verify-winapi
133
-
134
- ios :
135
- name : iOS
136
- runs-on : macos-latest
137
- strategy :
138
- matrix :
139
- include :
140
- - target : aarch64-apple-ios
141
- sdk : iphoneos
142
- - target : x86_64-apple-ios
143
- sdk : iphonesimulator
144
- steps :
145
- - uses : actions/checkout@v3
146
- with :
147
- submodules : true
148
- - run : rustup target add ${{ matrix.target }}
149
- - run : |
150
- export RUSTFLAGS=-Dwarnings
151
- export SDK_PATH=`xcrun --show-sdk-path --sdk ${{ matrix.sdk }}`
152
- export RUSTFLAGS="-C link-arg=-isysroot -C link-arg=$SDK_PATH"
153
- cargo test --no-run --target ${{ matrix.target }}
154
- name: Build tests
155
-
156
- docker :
157
- name : Docker
158
- runs-on : ubuntu-20.04
159
- strategy :
160
- fail-fast : false
161
- matrix :
162
- target :
163
- - aarch64-unknown-linux-gnu
164
- - arm-unknown-linux-gnueabihf
165
- - armv7-unknown-linux-gnueabihf
166
- - i586-unknown-linux-gnu
167
- - i686-unknown-linux-gnu
168
- - powerpc64-unknown-linux-gnu
169
- - s390x-unknown-linux-gnu
170
- - x86_64-pc-windows-gnu
171
- - x86_64-unknown-linux-gnu
172
- - x86_64-unknown-linux-musl
173
- - arm-linux-androideabi
174
- - armv7-linux-androideabi
175
- - aarch64-linux-android
176
- - i686-linux-android
177
- - x86_64-linux-android
178
- steps :
179
- - uses : actions/checkout@v3
180
- with :
181
- submodules : true
182
- - name : Install Rust
183
- run : rustup update stable && rustup default stable
184
- - run : rustup target add ${{ matrix.target }}
185
- - run : cargo generate-lockfile
186
- - run : echo RUSTFLAGS=-Dwarnings >> $GITHUB_ENV
187
- shell : bash
188
- - run : ./ci/run-docker.sh ${{ matrix.target }}
118
+ # windows_arm64:
119
+ # name: Windows AArch64
120
+ # runs-on: windows-latest
121
+ # steps:
122
+ # - uses: actions/checkout@v3
123
+ # with:
124
+ # submodules: true
125
+ # - name: Install Rust
126
+ # run: rustup update stable --no-self-update && rustup default stable
127
+ # shell: bash
128
+ # - run: echo RUSTFLAGS=-Dwarnings >> $GITHUB_ENV
129
+ # shell: bash
130
+ # - run: rustup target add aarch64-pc-windows-msvc
131
+ # - run: cargo test --no-run --target aarch64-pc-windows-msvc
132
+ # - run: cargo test --no-run --target aarch64-pc-windows-msvc --features verify-winapi
133
+
134
+ # ios:
135
+ # name: iOS
136
+ # runs-on: macos-latest
137
+ # strategy:
138
+ # matrix:
139
+ # include:
140
+ # - target: aarch64-apple-ios
141
+ # sdk: iphoneos
142
+ # - target: x86_64-apple-ios
143
+ # sdk: iphonesimulator
144
+ # steps:
145
+ # - uses: actions/checkout@v3
146
+ # with:
147
+ # submodules: true
148
+ # - run: rustup target add ${{ matrix.target }}
149
+ # - run: |
150
+ # export RUSTFLAGS=-Dwarnings
151
+ # export SDK_PATH=`xcrun --show-sdk-path --sdk ${{ matrix.sdk }}`
152
+ # export RUSTFLAGS="-C link-arg=-isysroot -C link-arg=$SDK_PATH"
153
+ # cargo test --no-run --target ${{ matrix.target }}
154
+ # name: Build tests
155
+
156
+ # docker:
157
+ # name: Docker
158
+ # runs-on: ubuntu-20.04
159
+ # strategy:
160
+ # fail-fast: false
161
+ # matrix:
162
+ # target:
163
+ # - aarch64-unknown-linux-gnu
164
+ # - arm-unknown-linux-gnueabihf
165
+ # - armv7-unknown-linux-gnueabihf
166
+ # - i586-unknown-linux-gnu
167
+ # - i686-unknown-linux-gnu
168
+ # - powerpc64-unknown-linux-gnu
169
+ # - s390x-unknown-linux-gnu
170
+ # - x86_64-pc-windows-gnu
171
+ # - x86_64-unknown-linux-gnu
172
+ # - x86_64-unknown-linux-musl
173
+ # - arm-linux-androideabi
174
+ # - armv7-linux-androideabi
175
+ # - aarch64-linux-android
176
+ # - i686-linux-android
177
+ # - x86_64-linux-android
178
+ # steps:
179
+ # - uses: actions/checkout@v3
180
+ # with:
181
+ # submodules: true
182
+ # - name: Install Rust
183
+ # run: rustup update stable && rustup default stable
184
+ # - run: rustup target add ${{ matrix.target }}
185
+ # - run: cargo generate-lockfile
186
+ # - run: echo RUSTFLAGS=-Dwarnings >> $GITHUB_ENV
187
+ # shell: bash
188
+ # - run: ./ci/run-docker.sh ${{ matrix.target }}
189
189
190
190
rustfmt :
191
191
name : Rustfmt
@@ -198,28 +198,28 @@ jobs:
198
198
run : rustup update stable && rustup default stable && rustup component add rustfmt
199
199
- run : cargo fmt --all -- --check
200
200
201
- build :
202
- name : Build Targets
203
- runs-on : ubuntu-20.04
204
- strategy :
205
- matrix :
206
- target :
207
- - wasm32-unknown-unknown
208
- - wasm32-wasi
209
- - x86_64-unknown-fuchsia
210
- - x86_64-fortanix-unknown-sgx
211
- - x86_64-unknown-illumos
212
- steps :
213
- - uses : actions/checkout@v3
214
- with :
215
- submodules : true
216
- - name : Install Rust
217
- run : rustup update nightly && rustup default nightly
218
- - run : rustup target add ${{ matrix.target }}
219
- - run : echo RUSTFLAGS=-Dwarnings >> $GITHUB_ENV
220
- shell : bash
221
- - run : cargo build --target ${{ matrix.target }}
222
- - run : cargo build --manifest-path crates/as-if-std/Cargo.toml --target ${{ matrix.target }}
201
+ # build:
202
+ # name: Build Targets
203
+ # runs-on: ubuntu-20.04
204
+ # strategy:
205
+ # matrix:
206
+ # target:
207
+ # - wasm32-unknown-unknown
208
+ # - wasm32-wasi
209
+ # - x86_64-unknown-fuchsia
210
+ # - x86_64-fortanix-unknown-sgx
211
+ # - x86_64-unknown-illumos
212
+ # steps:
213
+ # - uses: actions/checkout@v3
214
+ # with:
215
+ # submodules: true
216
+ # - name: Install Rust
217
+ # run: rustup update nightly && rustup default nightly
218
+ # - run: rustup target add ${{ matrix.target }}
219
+ # - run: echo RUSTFLAGS=-Dwarnings >> $GITHUB_ENV
220
+ # shell: bash
221
+ # - run: cargo build --target ${{ matrix.target }}
222
+ # - run: cargo build --manifest-path crates/as-if-std/Cargo.toml --target ${{ matrix.target }}
223
223
224
224
msrv :
225
225
name : MSRV
0 commit comments