Skip to content

Commit

Permalink
Merge branch 'hotfix/2024.1.1' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
miosakuma committed Feb 17, 2025
2 parents 2c92655 + 33ad547 commit 47234f1
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 2 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,12 @@ jobs:
sudo apt-get update
sudo apt-get install -y software-properties-common
source /etc/os-release
# 20.04 は自前の libssl1.1 があるので不要
if [ "$VERSION_ID" != "20.04" ]; then
wget http://archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.0g-2ubuntu4_amd64.deb
sudo dpkg -i libssl1.1_1.1.0g-2ubuntu4_amd64.deb
fi
wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2004/x86_64/cuda-keyring_1.0-1_all.deb
sudo dpkg -i cuda-keyring_*all.deb
sudo apt-get update
Expand Down
17 changes: 17 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,23 @@
- ubuntu-24.04 には意図的に上げていない
- @voluntas

## 2024.1.1

**リリース日**: 2025-02-17

- [FIX] libcamera 3.0 が最新の Raspberry Pi OS 環境で動作しない問題を修正
- momo 2024.1.0 のリリースバイナリに含まれる libcamera.so は 0.3 だが最新の Raspberry Pi OS 環境と互換性がないため libcamera.so 0.4 にあげる必要がある
- 最新の環境で再ビルドすることで事象が解消した
- @melpon, @torikizi

### misc

- [FIX] Boost のダウンロード URL を変更する
- @torikizi
- [FIX] Ubuntu 22.04, 24.04 の場合 libssl1.1 をインストールするように修正
- Ubuntu 22.04, 24.04 の場合はデフォルトで libssl1.1 が入っていないためインストールする必要がある
- @torikizi

## 2024.1.0

**リリース日**: 2024-09-18
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
MOMO_VERSION=2024.1.0
MOMO_VERSION=2024.1.1
WEBRTC_BUILD_VERSION=m129.6668.1.0
BOOST_VERSION=1.86.0
CLI11_VERSION=v2.4.2
Expand Down
2 changes: 1 addition & 1 deletion buildbase.py
Original file line number Diff line number Diff line change
Expand Up @@ -691,7 +691,7 @@ def build_and_install_boost(
version_underscore = version.replace(".", "_")
archive = download(
# XXX: ここ GitHub Releases に変更するのはダメなのだろうか?
f"https://boostorg.jfrog.io/artifactory/main/release/{version}/source/boost_{version_underscore}.tar.gz",
f"https://archives.boost.io/release/{version}/source/boost_{version_underscore}.tar.gz",
source_dir,
)
extract(archive, output_dir=build_dir, output_dirname="boost")
Expand Down

0 comments on commit 47234f1

Please sign in to comment.