mirror of
https://github.com/home-assistant/core.git
synced 2025-07-23 13:17:32 +00:00
Fix name of 64bit intel/amd arch in builder and wheels workflow (#107335)
This commit is contained in:
parent
9b1a8a1129
commit
65985c4e0b
2
.github/workflows/builder.yml
vendored
2
.github/workflows/builder.yml
vendored
@ -180,7 +180,7 @@ jobs:
|
|||||||
sed -i "s|pykrakenapi|# pykrakenapi|g" requirements_all.txt
|
sed -i "s|pykrakenapi|# pykrakenapi|g" requirements_all.txt
|
||||||
|
|
||||||
- name: Adjustments for 64-bit
|
- name: Adjustments for 64-bit
|
||||||
if: matrix.arch == 'x86_64' || matrix.arch == 'aarch64'
|
if: matrix.arch == 'amd64' || matrix.arch == 'aarch64'
|
||||||
run: |
|
run: |
|
||||||
# Some speedups are only available on 64-bit, and since
|
# Some speedups are only available on 64-bit, and since
|
||||||
# we build 32bit images on 64bit hosts, we only enable
|
# we build 32bit images on 64bit hosts, we only enable
|
||||||
|
2
.github/workflows/wheels.yml
vendored
2
.github/workflows/wheels.yml
vendored
@ -162,7 +162,7 @@ jobs:
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# Some speedups are only for 64-bit
|
# Some speedups are only for 64-bit
|
||||||
if [ "${{ matrix.arch }}" = "x86_64" ] || [ "${{ matrix.arch }}" = "aarch64" ]; then
|
if [ "${{ matrix.arch }}" = "amd64" ] || [ "${{ matrix.arch }}" = "aarch64" ]; then
|
||||||
sed -i "s|aiohttp-zlib-ng|aiohttp-zlib-ng\[isal\]|g" ${requirement_file}
|
sed -i "s|aiohttp-zlib-ng|aiohttp-zlib-ng\[isal\]|g" ${requirement_file}
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user