Skip to content

Commit

Permalink
修正
Browse files Browse the repository at this point in the history
  • Loading branch information
melpon committed Sep 20, 2024
1 parent 7c2cc18 commit 2397c2b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,10 @@ jobs:
# Intel Media SDK のために libva-dev, libdrm-dev を入れる
DEBIAN_FRONTEND=noninteractive sudo apt-get -y install libva-dev libdrm-dev
- name: Install deps for ${{ matrix.platform.name }}
if: matrix.platform.os == 'ubuntu' && matrix.platform.arch == 'armv8'
run: |
sudo apt-get install -y software-properties-common multistrap
- name: Install deps for Android
if: matrix.platform.os == 'android'
run: |
Expand Down
2 changes: 1 addition & 1 deletion run.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def install_deps(
version = read_version_file("VERSION")

# multistrap を使った sysroot の構築
if platform.target.arch != "x86_64":
if platform.target.os == "ubuntu" and platform.target.arch == "armv8":
conf = os.path.join(BASE_DIR, "multistrap", f"{platform.target.package_name}.conf")
# conf ファイルのハッシュ値をバージョンとする
version_md5 = hashlib.md5(open(conf, "rb").read()).hexdigest()
Expand Down

0 comments on commit 2397c2b

Please sign in to comment.