mirror of
https://github.com/sigp/lighthouse.git
synced 2026-07-03 21:04:28 +00:00
Update CI nethermind and LLVM versions (#5933)
* Update nethermind and llvm versions. * Fix nethermind binary path
This commit is contained in:
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
@@ -64,7 +64,7 @@ jobs:
|
|||||||
- uses: KyleMayes/install-llvm-action@v1
|
- uses: KyleMayes/install-llvm-action@v1
|
||||||
if: env.SELF_HOSTED_RUNNERS == 'false' && startsWith(matrix.arch, 'x86_64-windows')
|
if: env.SELF_HOSTED_RUNNERS == 'false' && startsWith(matrix.arch, 'x86_64-windows')
|
||||||
with:
|
with:
|
||||||
version: "16.0"
|
version: "17.0"
|
||||||
directory: ${{ runner.temp }}/llvm
|
directory: ${{ runner.temp }}/llvm
|
||||||
- name: Set LIBCLANG_PATH
|
- name: Set LIBCLANG_PATH
|
||||||
if: startsWith(matrix.arch, 'x86_64-windows')
|
if: startsWith(matrix.arch, 'x86_64-windows')
|
||||||
|
|||||||
5
.github/workflows/test-suite.yml
vendored
5
.github/workflows/test-suite.yml
vendored
@@ -112,11 +112,6 @@ jobs:
|
|||||||
- name: Install make
|
- name: Install make
|
||||||
if: env.SELF_HOSTED_RUNNERS == 'false'
|
if: env.SELF_HOSTED_RUNNERS == 'false'
|
||||||
run: choco install -y make
|
run: choco install -y make
|
||||||
# - uses: KyleMayes/install-llvm-action@v1
|
|
||||||
# if: env.SELF_HOSTED_RUNNERS == 'false'
|
|
||||||
# with:
|
|
||||||
# version: "16.0"
|
|
||||||
# directory: ${{ runner.temp }}/llvm
|
|
||||||
- name: Set LIBCLANG_PATH
|
- name: Set LIBCLANG_PATH
|
||||||
run: echo "LIBCLANG_PATH=$((gcm clang).source -replace "clang.exe")" >> $env:GITHUB_ENV
|
run: echo "LIBCLANG_PATH=$((gcm clang).source -replace "clang.exe")" >> $env:GITHUB_ENV
|
||||||
- name: Run tests in release
|
- name: Run tests in release
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ use unused_port::unused_tcp4_port;
|
|||||||
/// We've pinned the Nethermind version since our method of using the `master` branch to
|
/// We've pinned the Nethermind version since our method of using the `master` branch to
|
||||||
/// find the latest tag isn't working. It appears Nethermind don't always tag on `master`.
|
/// find the latest tag isn't working. It appears Nethermind don't always tag on `master`.
|
||||||
/// We should fix this so we always pull the latest version of Nethermind.
|
/// We should fix this so we always pull the latest version of Nethermind.
|
||||||
const NETHERMIND_BRANCH: &str = "release/1.21.0";
|
const NETHERMIND_BRANCH: &str = "release/1.27.0";
|
||||||
const NETHERMIND_REPO_URL: &str = "https://github.com/NethermindEth/nethermind";
|
const NETHERMIND_REPO_URL: &str = "https://github.com/NethermindEth/nethermind";
|
||||||
|
|
||||||
fn build_result(repo_dir: &Path) -> Output {
|
fn build_result(repo_dir: &Path) -> Output {
|
||||||
@@ -70,11 +70,10 @@ impl NethermindEngine {
|
|||||||
.join("nethermind")
|
.join("nethermind")
|
||||||
.join("src")
|
.join("src")
|
||||||
.join("Nethermind")
|
.join("Nethermind")
|
||||||
.join("Nethermind.Runner")
|
.join("artifacts")
|
||||||
.join("bin")
|
.join("bin")
|
||||||
.join("Release")
|
.join("Nethermind.Runner")
|
||||||
.join("net7.0")
|
.join("release")
|
||||||
.join("linux-x64")
|
|
||||||
.join("nethermind")
|
.join("nethermind")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user