Browse Source

ci: use llvm 10

llvm-integration
Garrit Franke 3 years ago
parent
commit
4759fb2774
  1. 8
      .github/workflows/ci.yml
  2. 30
      Cargo.lock
  3. 2
      Cargo.toml

8
.github/workflows/ci.yml

@ -11,7 +11,7 @@ jobs:
- name: Install LLVM and Clang - name: Install LLVM and Clang
uses: KyleMayes/install-llvm-action@v1 uses: KyleMayes/install-llvm-action@v1
with: with:
version: "11" version: "10"
directory: ${{ runner.temp }}/llvm directory: ${{ runner.temp }}/llvm
- uses: actions-rs/toolchain@v1 - uses: actions-rs/toolchain@v1
with: with:
@ -30,7 +30,7 @@ jobs:
- name: Install LLVM and Clang - name: Install LLVM and Clang
uses: KyleMayes/install-llvm-action@v1 uses: KyleMayes/install-llvm-action@v1
with: with:
version: "11" version: "10"
directory: ${{ runner.temp }}/llvm directory: ${{ runner.temp }}/llvm
- uses: actions-rs/toolchain@v1 - uses: actions-rs/toolchain@v1
with: with:
@ -49,7 +49,7 @@ jobs:
- name: Install LLVM and Clang - name: Install LLVM and Clang
uses: KyleMayes/install-llvm-action@v1 uses: KyleMayes/install-llvm-action@v1
with: with:
version: "11" version: "10"
directory: ${{ runner.temp }}/llvm directory: ${{ runner.temp }}/llvm
- uses: actions-rs/toolchain@v1 - uses: actions-rs/toolchain@v1
with: with:
@ -70,7 +70,7 @@ jobs:
- name: Install LLVM and Clang - name: Install LLVM and Clang
uses: KyleMayes/install-llvm-action@v1 uses: KyleMayes/install-llvm-action@v1
with: with:
version: "11" version: "10"
directory: ${{ runner.temp }}/llvm directory: ${{ runner.temp }}/llvm
- uses: actions-rs/toolchain@v1 - uses: actions-rs/toolchain@v1
with: with:

30
Cargo.lock generated

@ -152,9 +152,9 @@ checksum = "1482821306169ec4d07f6aca392a4681f66c75c9918aa49641a2595db64053cb"
[[package]] [[package]]
name = "llvm-sys" name = "llvm-sys"
version = "110.0.0" version = "100.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b0062a0c6635fb5d57c6ebba072dcae50e41651030363cf06d220b0d016840f2" checksum = "9109e19fbfac3458f2970189719fa19f1007c6fd4e08c44fdebf4be0ddbe261d"
dependencies = [ dependencies = [
"cc", "cc",
"lazy_static", "lazy_static",
@ -209,15 +209,6 @@ dependencies = [
"winapi", "winapi",
] ]
[[package]]
name = "pest"
version = "2.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "10f4872ae94d7b90ae48754df22fd42ad52ce740b8f370b03da4835417403e53"
dependencies = [
"ucd-trie",
]
[[package]] [[package]]
name = "ppv-lite86" name = "ppv-lite86"
version = "0.2.10" version = "0.2.10"
@ -399,21 +390,18 @@ checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
[[package]] [[package]]
name = "semver" name = "semver"
version = "0.11.0" version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f301af10236f6df4160f7c3f04eec6dbc70ace82d23326abad5edee88801c6b6" checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
dependencies = [ dependencies = [
"semver-parser", "semver-parser",
] ]
[[package]] [[package]]
name = "semver-parser" name = "semver-parser"
version = "0.10.2" version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "00b0bef5b7f9e0df16536d3961cfb6e84331c065b4066afb39768d0e319411f7" checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
dependencies = [
"pest",
]
[[package]] [[package]]
name = "smallvec" name = "smallvec"
@ -494,12 +482,6 @@ dependencies = [
"once_cell", "once_cell",
] ]
[[package]]
name = "ucd-trie"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "56dee185309b50d1f11bfedef0fe6d036842e3fb77413abef29f8f8d1c5d4c1c"
[[package]] [[package]]
name = "unicode-segmentation" name = "unicode-segmentation"
version = "1.7.1" version = "1.7.1"

2
Cargo.toml

@ -25,5 +25,5 @@ default = ["backend_llvm"]
structopt = "0.3.21" structopt = "0.3.21"
rust-embed = "5.7.0" rust-embed = "5.7.0"
tempfile = "3.1.0" tempfile = "3.1.0"
inkwell = { version = "0.1.0-beta.2", features = ["llvm11-0"], optional = true } inkwell = { version = "0.1.0-beta.2", features = ["llvm10-0"], optional = true }

Loading…
Cancel
Save