Skip to content

Commit 572bffa

Browse files
Temporarily disable most of CI to be nice
1 parent 6ff19b3 commit 572bffa

File tree

1 file changed

+103
-103
lines changed

1 file changed

+103
-103
lines changed

.github/workflows/main.yml

+103-103
Original file line numberDiff line numberDiff line change
@@ -22,18 +22,18 @@ jobs:
2222
rust: beta
2323
- os: ubuntu-20.04
2424
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
2929
# Note that these are on nightly due to rust-lang/rust#63700 not being
3030
# 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
3737
steps:
3838
- uses: actions/checkout@v3
3939
with:
@@ -115,77 +115,77 @@ jobs:
115115
- run: cargo build --manifest-path crates/as-if-std/Cargo.toml
116116
- run: cargo build --manifest-path crates/as-if-std/Cargo.toml --no-default-features
117117

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 }}
189189

190190
rustfmt:
191191
name: Rustfmt
@@ -198,28 +198,28 @@ jobs:
198198
run: rustup update stable && rustup default stable && rustup component add rustfmt
199199
- run: cargo fmt --all -- --check
200200

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 }}
223223

224224
msrv:
225225
name: MSRV

0 commit comments

Comments
 (0)