diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index e1e0d25e437..8421665f22c 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -23,9 +23,9 @@ jobs: components: rustfmt, clippy - name: Install LLVM (Linux) run: | - curl --proto '=https' --tlsv1.2 -sSf https://github.com/wasmerio/llvm-custom-builds/releases/download/11.x/linux-amd64.tar.gz -L -o /opt/llvm.tar.xz + curl --proto '=https' --tlsv1.2 -sSf https://github.com/wasmerio/llvm-custom-builds/releases/download/11.x/linux-amd64.tar.gz -L -o /opt/llvm.tar.gz mkdir -p /opt/llvm-11 - tar xf /opt/llvm.tar.xz --strip-components=1 -C /opt/llvm-11 + tar xf /opt/llvm.tar.gz --strip-components=1 -C /opt/llvm-11 echo '/opt/llvm-11/bin' >> $GITHUB_PATH echo 'LLVM_SYS_110_PREFIX=/opt/llvm-11' >> $GITHUB_ENV - run: make lint diff --git a/Cargo.lock b/Cargo.lock index 6c321a10067..8a1a03fd0b7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -215,9 +215,9 @@ dependencies = [ [[package]] name = "cbindgen" -version = "0.18.0" +version = "0.19.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "97449daf9b8c245bcad10bbc7c9f4a37c06172c18dd5f9fac340deefc309b957" +checksum = "38728c31b994e4b849cf59feefb4a8bf26acd299ee0b92c9fb35bd14ad4b8dfa" dependencies = [ "clap", "heck", diff --git a/lib/c-api/Cargo.toml b/lib/c-api/Cargo.toml index afc42e223a3..40a0adee199 100644 --- a/lib/c-api/Cargo.toml +++ b/lib/c-api/Cargo.toml @@ -91,5 +91,5 @@ native = ["dylib"] #emscripten = ["wasmer-emscripten"] [build-dependencies] -cbindgen = "0.18" +cbindgen = "0.19" cdylib-link-lines = "0.1"