Skip to content

Commit f20d0e6

Browse files
committed
don't try to run cargo
1 parent a43a375 commit f20d0e6

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

.github/workflows/main.yaml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -110,20 +110,20 @@ jobs:
110110
- uses: actions/checkout@v4
111111
with:
112112
submodules: true
113-
- name: Install Rust (rustup)
114-
shell: bash
115-
run: |
116-
channel="nightly"
117-
# Account for channels that have required components (MinGW)
118-
[ -n "${{ matrix.channel }}" ] && channel="${{ matrix.channel }}"
119-
rustup update "$channel" --no-self-update
120-
rustup default "$channel"
121-
rustup target add "${{ matrix.target }}"
122-
rustup component add llvm-tools-preview
123-
- uses: taiki-e/install-action@nextest
124-
- uses: Swatinem/rust-cache@v2
125-
with:
126-
key: ${{ matrix.target }}
113+
# - name: Install Rust (rustup)
114+
# shell: bash
115+
# run: |
116+
# channel="nightly"
117+
# # Account for channels that have required components (MinGW)
118+
# [ -n "${{ matrix.channel }}" ] && channel="${{ matrix.channel }}"
119+
# rustup update "$channel" --no-self-update
120+
# rustup default "$channel"
121+
# rustup target add "${{ matrix.target }}"
122+
# rustup component add llvm-tools-preview
123+
# - uses: taiki-e/install-action@nextest
124+
# - uses: Swatinem/rust-cache@v2
125+
# with:
126+
# key: ${{ matrix.target }}
127127
# - name: Cache Docker layers
128128
# uses: actions/cache@v4
129129
# if: matrix.os == 'ubuntu-24.04'

ci/run-windows.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- \
1111
--default-toolchain nightly-x86_64-gnu \
1212
--target "$target" -y
1313

14-
cargo -vV
14+
# cargo -vV
1515

1616
# rustup update nightly-x86_64-gnu
1717
# rustup default nightly-x86_64-gnu

0 commit comments

Comments
 (0)