ci: disable lld in release workflow for now (#427)

This commit is contained in:
Ning Sun
2022-11-09 14:37:25 +08:00
committed by GitHub
parent cf4e876e51
commit 64a706d6f0

View File

@@ -37,7 +37,6 @@ jobs:
uses: actions/cache@v3
with:
path: |
./llvm
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
@@ -53,11 +52,6 @@ jobs:
sudo cp protoc/bin/protoc /usr/local/bin/
sudo cp -r protoc/include/google /usr/local/include/
- uses: KyleMayes/install-llvm-action@v1
with:
version: "14.0"
cached: ${{ steps.cache.outputs.cache-hit }}
- name: Install Protoc for macos
if: contains(matrix.arch, 'darwin')
run: |
@@ -85,8 +79,6 @@ jobs:
with:
command: build
args: ${{ matrix.opts }} --release --locked --target ${{ matrix.arch }}
env:
CARGO_BUILD_RUSTFLAGS: "-C link-arg=-fuse-ld=lld"
- name: Calculate checksum and rename binary
shell: bash