Skip to content

Commit 133339f

Browse files
committed
Tweaks for Alchemy
1 parent 6d26957 commit 133339f

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
matrix:
2020
name:
2121
- windows_x86_64
22-
runs-on: windows-2022
22+
runs-on: windows-2025
2323
steps:
2424
- uses: actions/checkout@v4
2525
- name: Disk Cleanup
@@ -57,8 +57,8 @@ jobs:
5757
runs-on: macos-15
5858
steps:
5959
- uses: actions/checkout@v4
60-
- name: Select Xcode 16.1
61-
run: sudo xcode-select --switch /Applications/Xcode_16.1.app/Contents/Developer
60+
- name: Select Xcode 16.4
61+
run: sudo xcode-select --switch /Applications/Xcode_16.4.app/Contents/Developer
6262
- run: brew install ninja
6363
- uses: actions/setup-python@v5
6464
with:
@@ -84,11 +84,11 @@ jobs:
8484
# - ubuntu-18.04_armv8
8585
# - ubuntu-20.04_armv8
8686
# - ubuntu-18.04_x86_64
87-
- ubuntu-20.04_x86_64
88-
# - ubuntu-22.04_x86_64
87+
# - ubuntu-20.04_x86_64
88+
- ubuntu-22.04_x86_64
8989
# - android
9090
# - android_prefixed
91-
runs-on: linux-large
91+
runs-on: ubuntu-22.04
9292
steps:
9393
- uses: actions/checkout@v4
9494
- name: Disk Cleanup

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ jobs:
6767
output-artifact-id: ${{ steps.artifact-upload-step.outputs.artifact-id }}
6868
steps:
6969
- uses: actions/checkout@v4
70-
- name: Select Xcode 16.1
71-
run: sudo xcode-select --switch /Applications/Xcode_16.1.app/Contents/Developer
70+
- name: Select Xcode 16.4
71+
run: sudo xcode-select --switch /Applications/Xcode_16.4.app/Contents/Developer
7272
- run: brew install ninja
7373
- uses: actions/setup-python@v5
7474
with:
@@ -105,7 +105,7 @@ jobs:
105105
# - ubuntu-20.04_x86_64
106106
- ubuntu-22.04_x86_64
107107
# - android
108-
runs-on: linux-large
108+
runs-on: ubuntu-22.04
109109
outputs:
110110
output-artifact-id: ${{ steps.artifact-upload-step.outputs.artifact-id }}
111111
steps:

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- build-windows
1313
strategy:
1414
matrix:
15-
os: [windows-latest]
15+
os: [windows-2025]
1616
addrsize: ['64']
1717
runs-on: ${{ matrix.os }}
1818
steps:

build/run.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -799,7 +799,7 @@ def build_webrtc(
799799
'rtc_use_pipewire=false',
800800
"use_custom_libcxx=false",
801801
"use_custom_libcxx_for_host=false",
802-
'rtc_include_pulse_audio=false',
802+
'rtc_include_pulse_audio=true',
803803
'rtc_include_internal_audio_device=true',
804804
]
805805
else:

build/scripts/apt_install_x86_64.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ apt-get -y upgrade
88
# tzdata を noninteractive にしないと実行が止まってしまう
99
# need to set tzdata to noninteractive or else it'll stop
1010
apt-get -y install tzdata
11-
echo 'Asia/Tokyo' > /etc/timezone
11+
echo 'America/New_York' > /etc/timezone
1212
dpkg-reconfigure -f noninteractive tzdata
1313

1414
export DEBIAN_FRONTEND=noninteractive

0 commit comments

Comments
 (0)