Skip to content

Commit eb859b2

Browse files
committed
Updated action runners
1 parent 682a401 commit eb859b2

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/build.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ on:
1717

1818
jobs:
1919
build:
20-
runs-on: ${{ matrix.os }}
20+
runs-on: [self-hosted, "${{ matrix.os }}"]
2121

2222
strategy:
2323
matrix:
24-
os: [macos-latest, ubuntu-20.04, windows-2019]
25-
java: [13]
24+
os: [linux, macos, windows]
25+
java: [17]
2626

2727
env:
2828
WEBRTC_CACHE_BRANCH: 4844
@@ -74,4 +74,4 @@ jobs:
7474
env:
7575
NEXUS_USERNAME: ${{ secrets.NEXUS_USERNAME }}
7676
NEXUS_PASSWORD: ${{ secrets.NEXUS_PASSWORD }}
77-
run: mvn deploy -DskipTests -s .github/workflows/settings.xml
77+
run: mvn deploy -DskipTests -s .github/workflows/settings.xml

.github/workflows/release.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ on:
88

99
jobs:
1010
release:
11-
runs-on: ${{ matrix.os }}
11+
runs-on: [self-hosted, "${{ matrix.os }}"]
1212

1313
strategy:
1414
matrix:
15-
os: [macos-latest, ubuntu-20.04, windows-2019]
16-
java: [13]
15+
os: [linux, macos, windows]
16+
java: [17]
1717

1818
env:
1919
WEBRTC_CACHE_BRANCH: 4844

0 commit comments

Comments
 (0)