File tree Expand file tree Collapse file tree 5 files changed +18
-8
lines changed Expand file tree Collapse file tree 5 files changed +18
-8
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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 : |
Original file line number Diff line number Diff 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 :
Original file line number Diff line number Diff line change 1313 required : true
1414jobs :
1515 build :
16- runs-on : windows-2019
16+ runs-on : windows-2022
1717 steps :
1818 - uses : actions/checkout@v4
1919 with :
Original file line number Diff line number Diff 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
4444RUN 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
5050RUN curl https://apt.llvm.org/llvm.sh -o llvm.sh && \
You can’t perform that action at this time.
0 commit comments