Skip to content

Commit ac3bf19

Browse files
committed
test mac
1 parent 97702df commit ac3bf19

File tree

2 files changed

+3
-59
lines changed

2 files changed

+3
-59
lines changed

.github/actions/prepare-macos/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ runs:
1414
shell: bash
1515

1616
- name: Select Xcode version
17-
run: sudo xcode-select -s /Applications/Xcode_15.0.1.app/Contents/Developer
17+
run: sudo xcode-select -s /Applications/Xcode_15.2.0.app/Contents/Developer
1818
shell: bash

.github/workflows/build.yml

Lines changed: 2 additions & 58 deletions
Original file line numberDiff line numberDiff line change
@@ -16,67 +16,11 @@ on:
1616
workflow_dispatch:
1717

1818
env:
19-
WEBRTC_CACHE_BRANCH: 6998
19+
WEBRTC_CACHE_BRANCH: 7204
2020
WEBRTC_CHECKOUT_FOLDER: webrtc
2121
WEBRTC_INSTALL_FOLDER: webrtc/build
2222

2323
jobs:
24-
build-windows:
25-
strategy:
26-
fail-fast: false
27-
matrix:
28-
platform:
29-
- name: windows_x86_64
30-
runs-on: windows-2022
31-
java: [17]
32-
runs-on: ${{ matrix.platform.runs-on }}
33-
steps:
34-
- name: Checkout code
35-
uses: actions/checkout@v4
36-
37-
- id: prepare
38-
name: Prepare build
39-
uses: ./.github/actions/prepare-windows
40-
41-
- id: maven-build
42-
name: Maven build
43-
uses: ./.github/actions/build
44-
with:
45-
java-version: ${{ matrix.java }}
46-
platform-name: ${{ matrix.platform.name }}
47-
maven-username: ${{ secrets.MAVEN_USERNAME }}
48-
maven-password: ${{ secrets.MAVEN_TOKEN }}
49-
50-
build-linux:
51-
strategy:
52-
fail-fast: false
53-
matrix:
54-
platform:
55-
- name: linux_arm
56-
runs-on: ubuntu-22.04
57-
- name: linux_arm64
58-
runs-on: ubuntu-22.04
59-
- name: linux_x86-64
60-
runs-on: ubuntu-22.04
61-
java: [17]
62-
runs-on: ${{ matrix.platform.runs-on }}
63-
steps:
64-
- name: Checkout code
65-
uses: actions/checkout@v4
66-
67-
- id: prepare
68-
name: Prepare build
69-
uses: ./.github/actions/prepare-linux
70-
71-
- id: maven-build
72-
name: Maven build
73-
uses: ./.github/actions/build
74-
with:
75-
java-version: ${{ matrix.java }}
76-
platform-name: ${{ matrix.platform.name }}
77-
maven-username: ${{ secrets.MAVEN_USERNAME }}
78-
maven-password: ${{ secrets.MAVEN_TOKEN }}
79-
8024
build-macos:
8125
strategy:
8226
fail-fast: false
@@ -85,7 +29,7 @@ jobs:
8529
- name: macos_x86-64
8630
runs-on: macos-13
8731
- name: macos_arm64
88-
runs-on: macos-14
32+
runs-on: macos-15
8933
java: [17]
9034
runs-on: ${{ matrix.platform.runs-on }}
9135
steps:

0 commit comments

Comments
 (0)