Skip to content

Commit cae73a4

Browse files
committed
Merge tag 'v4.5.0' into tree-states
v4.5.0
2 parents 364074d + 441fc16 commit cae73a4

File tree

100 files changed

+1584
-1662
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

100 files changed

+1584
-1662
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ env:
1414
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
1515
REPO_NAME: ${{ github.repository_owner }}/lighthouse
1616
IMAGE_NAME: ${{ github.repository_owner }}/lighthouse
17+
# Enable self-hosted runners for the sigp repo only.
18+
SELF_HOSTED_RUNNERS: ${{ github.repository == 'sigp/lighthouse' }}
1719

1820
jobs:
1921
extract-version:
@@ -61,14 +63,15 @@ jobs:
6163
- name: Checkout sources
6264
uses: actions/checkout@v3
6365
- name: Get latest version of stable Rust
66+
if: env.SELF_HOSTED_RUNNERS == 'false'
6467
run: rustup update stable
6568

6669
# ==============================
6770
# Windows dependencies
6871
# ==============================
6972

7073
- uses: KyleMayes/install-llvm-action@v1
71-
if: startsWith(matrix.arch, 'x86_64-windows')
74+
if: env.SELF_HOSTED_RUNNERS == 'false' && startsWith(matrix.arch, 'x86_64-windows')
7275
with:
7376
version: "15.0"
7477
directory: ${{ runner.temp }}/llvm

0 commit comments

Comments
 (0)