Skip to content

Commit

Permalink
ci: update compilers
Browse files Browse the repository at this point in the history
  • Loading branch information
homuler committed Dec 22, 2024
1 parent 9fe5ec5 commit b947a37
Show file tree
Hide file tree
Showing 6 changed files with 44 additions and 44 deletions.
31 changes: 10 additions & 21 deletions .github/workflows/linux-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:
required: true
jobs:
build:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -37,18 +37,18 @@ jobs:
Packages/com.github.homuler.mediapipe/Runtime/Scripts/Protobuf/**/*.cs
Packages/com.github.homuler.mediapipe/PackageResources/MediaPipe/*.bytes
Packages/com.github.homuler.mediapipe/PackageResources/MediaPipe/*.txt
key: libs-ubuntu-22.04-v1-${{ hashFiles('cache_key.txt') }}
key: libs-ubuntu-24.04-v1-${{ hashFiles('cache_key.txt') }}

# Setup build tools
- name: Mount bazel cache
if: steps.cache-libs.outputs.cache-hit != 'true'
uses: actions/cache/restore@v4
with:
path: "~/.cache/bazel"
key: bazel-ubuntu-22.04-v1-${{ hashFiles('WORKSPACE') }}-${{ hashFiles('cache_key.txt') }}
key: bazel-ubuntu-24.04-v1-${{ hashFiles('WORKSPACE') }}-${{ hashFiles('cache_key.txt') }}
restore-keys: |
bazel-ubuntu-22.04-v1-${{ hashFiles('WORKSPACE') }}-
bazel-ubuntu-22.04-v1-
bazel-ubuntu-24.04-v1-${{ hashFiles('WORKSPACE') }}-
bazel-ubuntu-24.04-v1-
- name: Remove cache_key.txt
run: |
Expand All @@ -63,21 +63,10 @@ jobs:
- name: Install dependencies
if: steps.cache-libs.outputs.cache-hit != 'true'
run: |
# install GCC/G++ 11
sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
sudo apt-get update
sudo apt-get install -y --no-install-recommends gcc-11 g++-11
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-11 100 --slave /usr/bin/g++ g++ /usr/bin/g++-11
# install Clang 16
wget https://apt.llvm.org/llvm.sh
chmod +x llvm.sh
sudo ./llvm.sh 16
sudo ln -sf /usr/bin/clang-16 /usr/bin/clang
sudo ln -sf /usr/bin/clang++-16 /usr/bin/clang++
sudo ln -sf /usr/bin/clang-format-16 /usr/bin/clang-format
# install NuGet
sudo apt update
sudo apt-get install -y --no-install-recommends mono-complete
sudo curl -o /usr/local/bin/nuget.exe https://dist.nuget.org/win-x86-commandline/latest/nuget.exe
bash -c 'echo -e "#!/bin/bash\nmono /usr/local/bin/nuget.exe \$@" | sudo tee -a /usr/local/bin/nuget'
sudo chmod +x /usr/local/bin/nuget
Expand Down Expand Up @@ -106,7 +95,7 @@ jobs:
uses: actions/cache/save@v4
with:
path: ~/.cache/bazel
key: bazel-ubuntu-22.04-v1-${{ hashFiles('WORKSPACE') }}-${{ hashFiles('cache_key.txt') }}
key: bazel-ubuntu-24.04-v1-${{ hashFiles('WORKSPACE') }}-${{ hashFiles('cache_key.txt') }}

test:
runs-on: ${{ matrix.os }}
Expand All @@ -115,7 +104,7 @@ jobs:
fail-fast: false
matrix:
os:
- ubuntu-22.04
- ubuntu-24.04
unityVersion:
- 2022.3.34f1
- 2021.3.33f1
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/macos-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:
required: true
jobs:
build:
runs-on: macos-13
runs-on: macos-14
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -37,18 +37,18 @@ jobs:
Packages/com.github.homuler.mediapipe/Runtime/Scripts/Protobuf/**/*.cs
Packages/com.github.homuler.mediapipe/PackageResources/MediaPipe/*.bytes
Packages/com.github.homuler.mediapipe/PackageResources/MediaPipe/*.txt
key: libs-macos-13-v1-${{ hashFiles('cache_key.txt') }}
key: libs-macos-14-v1-${{ hashFiles('cache_key.txt') }}

# Setup build tools
- name: Mount bazel cache
if: steps.cache-libs.outputs.cache-hit != 'true'
uses: actions/cache/restore@v4
with:
path: /private/var/tmp/_bazel_runner
key: bazel-macos-13-v1-${{ hashFiles('WORKSPACE') }}-${{ hashFiles('cache_key.txt') }}
key: bazel-macos-14-v1-${{ hashFiles('WORKSPACE') }}-${{ hashFiles('cache_key.txt') }}
restore-keys: |
bazel-macos-13-v1-${{ hashFiles('WORKSPACE') }}-
bazel-macos-13-v1-
bazel-macos-14-v1-${{ hashFiles('WORKSPACE') }}-
bazel-macos-14-v1-
- name: Remove cache_key.txt
run: |
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
uses: actions/cache/save@v4
with:
path: /private/var/tmp/_bazel_runner
key: bazel-macos-13-v1-${{ hashFiles('WORKSPACE') }}-${{ hashFiles('cache_key.txt') }}
key: bazel-macos-14-v1-${{ hashFiles('WORKSPACE') }}-${{ hashFiles('cache_key.txt') }}

test:
runs-on: ${{ matrix.os }}
Expand All @@ -93,7 +93,7 @@ jobs:
fail-fast: false
matrix:
os:
- macos-13
- macos-14
unity:
- { version: "2022.3.34f1", changeset: "4886f5360533" }
- { version: "2021.3.33f1", changeset: "ee5a2aa03ab2" }
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,15 @@ jobs:
with:
ref: ${{ inputs.ref }}

- name: Install Clang 16
run: |
brew install llvm
echo 'export PATH="/usr/local/opt/llvm/bin:$PATH"' >> /Users/runner/.bash_profile
echo 'export LDFLAGS="-L/usr/local/opt/llvm/lib"' >> /Users/runner/.bash_profile
echo 'export CPPFLAGS="-I/usr/local/opt/llvm/include"' >> /Users/runner/.bash_profile
clang --version
# Setup Python
- uses: actions/setup-python@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
required: true
jobs:
build:
runs-on: windows-2019
runs-on: windows-2022
steps:
- uses: actions/checkout@v4
with:
Expand Down
28 changes: 15 additions & 13 deletions docker/linux/x86_64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,21 +30,11 @@ RUN apt-get update && \
wget \
zip

# Upgrade binutils (>= 2.36)
RUN curl -O https://ftp.gnu.org/gnu/binutils/binutils-2.36.tar.gz && \
tar -xvzof binutils-2.36.tar.gz && \
cd binutils-2.36 && \
mkdir build && \
cd build && \
../configure --prefix=/usr && \
make && \
make install

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

# Install Clang 16
RUN curl https://apt.llvm.org/llvm.sh -o llvm.sh && \
Expand All @@ -54,6 +44,18 @@ RUN curl https://apt.llvm.org/llvm.sh -o llvm.sh && \
ln -sf /usr/bin/clang++-16 /usr/bin/clang++ && \
ln -sf /usr/bin/clang-format-16 /usr/bin/clang-format

# Upgrade binutils (>= 2.40)
RUN apt-get install -y --no-install-recommends bison texinfo && \
curl -O https://ftp.gnu.org/gnu/binutils/binutils-2.40.tar.gz && \
tar -xvzof binutils-2.40.tar.gz && \
cd binutils-2.40 && \
mkdir build && \
cd build && \
../configure --prefix=/usr --enable-gold --enable-ld=default && \
make -j `nproc` && \
make install


FROM base AS android

WORKDIR /tmp
Expand Down
4 changes: 2 additions & 2 deletions third_party/opencv.BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -183,14 +183,14 @@ cmake(
cache_entries = CACHE_ENTRIES,
generate_args = select({
"@bazel_tools//src/conditions:windows": [
"-G \"Visual Studio 16 2019\"",
"-G \"Visual Studio 17 2022\"",
"-A x64",
],
"//conditions:default": [],
}),
lib_source = "@opencv//:all",
out_lib_dir = select({
"@bazel_tools//src/conditions:windows": "x64/vc16",
"@bazel_tools//src/conditions:windows": "x64/vc17",
"//conditions:default": ".", # need to include lib/ and share/OpenCV/3rdparty/lib when building static libs
}),
out_static_libs = select({
Expand Down

0 comments on commit b947a37

Please sign in to comment.