Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Linux x86_64 版のビルドプラットフォームを ubuntu-22.04_x86_64 にあげる #114

Open
wants to merge 3 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ jobs:
matrix:
name:
- android
- ubuntu-20.04_x86_64
runs-on: ubuntu-20.04
- ubuntu-22.04_x86_64
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Cache
Expand All @@ -104,7 +104,7 @@ jobs:
restore-keys: |
${{ matrix.name }}-v1-
- name: Prepare Ubuntu x86_64
if: matrix.name == 'ubuntu-20.04_x86_64'
if: matrix.name == 'ubuntu-22.04_x86_64'
run: |
sudo apt install libgl-dev
- run: python3 run.py ${{ matrix.name }}
Expand All @@ -124,18 +124,18 @@ jobs:
path: android/
# Ubuntu 用
- name: Copy Ubuntu x86_64 files
if: matrix.name == 'ubuntu-20.04_x86_64'
if: matrix.name == 'ubuntu-22.04_x86_64'
run: |
mkdir ubuntu-20.04_x86_64/
cp _build/ubuntu-20.04_x86_64/release/sora_unity_sdk/libSoraUnitySdk.so ubuntu-20.04_x86_64/
mkdir ubuntu-22.04_x86_64/
cp _build/ubuntu-22.04_x86_64/release/sora_unity_sdk/libSoraUnitySdk.so ubuntu-22.04_x86_64/
- name: Upload Ubuntu x86_64 Artifact
if: matrix.name == 'ubuntu-20.04_x86_64'
if: matrix.name == 'ubuntu-22.04_x86_64'
uses: actions/upload-artifact@v4
with:
name: ubuntu-20.04_x86_64
path: ubuntu-20.04_x86_64/
name: ubuntu-22.04_x86_64
path: ubuntu-22.04_x86_64/
package:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
needs:
- build-windows
- build-macos
Expand Down Expand Up @@ -164,7 +164,7 @@ jobs:
cp ios/libboost_json.a SoraUnitySdk/Plugins/SoraUnitySdk/ios/
cp ios/libsora.a SoraUnitySdk/Plugins/SoraUnitySdk/ios/
cp ios/libboost_filesystem.a SoraUnitySdk/Plugins/SoraUnitySdk/ios/
cp ubuntu-20.04_x86_64/libSoraUnitySdk.so SoraUnitySdk/Plugins/SoraUnitySdk/linux/x86_64/
cp ubuntu-22.04_x86_64/libSoraUnitySdk.so SoraUnitySdk/Plugins/SoraUnitySdk/linux/x86_64/

cp LICENSE SoraUnitySdk/SoraUnitySdk/
cp NOTICE.md SoraUnitySdk/SoraUnitySdk/
Expand Down
11 changes: 9 additions & 2 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,15 @@

## develop

- [UPDATE] Sora C++ SDK を `2025.2.0` に上げる
- `CMAKE_VERSION` を `3.31.4` にアップデート
- [CHANGE] Linux x86_64 版のビルドを `ubuntu-20.04_x86_64` から `ubuntu-22.04_x86_64` にあげる
- @miosakuma

### misc

- [CHANGE] Linux x86_64 と Android のビルド環境を `ubuntu-20.04` から `ubuntu-22.04` にあげる
- @miosakuma
- [CHANGE] GitHub Actions の package タスクを実行する環境を `ubuntu-20.04` から `ubuntu-22.04` にあげる
- @miosakuma

## 2025.1.0

Expand Down