Skip to content

Commit e226d43

Browse files
committed
ci: update compilers
1 parent 33acba1 commit e226d43

File tree

5 files changed

+18
-8
lines changed

5 files changed

+18
-8
lines changed

.github/workflows/linux-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,11 @@ jobs:
6363
- name: Install dependencies
6464
if: steps.cache-libs.outputs.cache-hit != 'true'
6565
run: |
66-
# install GCC/G++ 11
66+
# install GCC/G++ 13
6767
sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
6868
sudo apt-get update
69-
sudo apt-get install -y --no-install-recommends gcc-11 g++-11
70-
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-11 100 --slave /usr/bin/g++ g++ /usr/bin/g++-11
69+
sudo apt-get install -y --no-install-recommends gcc-13 g++-13
70+
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-13 100 --slave /usr/bin/g++ g++ /usr/bin/g++-13
7171
7272
# install Clang 16
7373
wget https://apt.llvm.org/llvm.sh

.github/workflows/macos-test.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@ jobs:
2222
with:
2323
ref: ${{ inputs.ref }}
2424

25+
- name: Install Clang 16
26+
run: |
27+
brew install llvm
28+
clang --version
29+
2530
# Cache built libraries
2631
- name: Concat native library source files
2732
run: |

.github/workflows/package.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,11 @@ jobs:
113113
with:
114114
ref: ${{ inputs.ref }}
115115

116+
- name: Install Clang 16
117+
run: |
118+
brew install llvm
119+
clang --version
120+
116121
# Setup Python
117122
- uses: actions/setup-python@v5
118123
with:
@@ -158,7 +163,7 @@ jobs:
158163
path: Packages/com.github.homuler.mediapipe/Runtime/Plugins/iOS/MediaPipeUnity.framework
159164

160165
windows-build:
161-
runs-on: windows-2019
166+
runs-on: windows-2022
162167
steps:
163168
- uses: actions/checkout@v4
164169
with:

.github/workflows/windows-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
required: true
1414
jobs:
1515
build:
16-
runs-on: windows-2019
16+
runs-on: windows-2022
1717
steps:
1818
- uses: actions/checkout@v4
1919
with:

docker/linux/x86_64/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ RUN curl -O https://ftp.gnu.org/gnu/binutils/binutils-2.36.tar.gz && \
4040
make && \
4141
make install
4242

43-
# Install gcc-11
43+
# Install gcc-13
4444
RUN add-apt-repository ppa:ubuntu-toolchain-r/test -y && \
4545
apt-get update && \
46-
apt-get install -y --no-install-recommends gcc-11 g++-11 && \
47-
update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-11 100 --slave /usr/bin/g++ g++ /usr/bin/g++-11
46+
apt-get install -y --no-install-recommends gcc-13 g++-13 && \
47+
update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-13 100 --slave /usr/bin/g++ g++ /usr/bin/g++-13
4848

4949
# Install Clang 16
5050
RUN curl https://apt.llvm.org/llvm.sh -o llvm.sh && \

0 commit comments

Comments
 (0)