ci: binutils-aarch64 installation fixed

This commit is contained in:
Nicolas Kruse 2025-11-01 09:16:47 +01:00 committed by Nicolas
parent 844101b91c
commit 3ea60b5120
1 changed files with 3 additions and 3 deletions

View File

@ -64,14 +64,14 @@ jobs:
run: | run: |
echo "set man-db/auto-update false" | sudo debconf-communicate echo "set man-db/auto-update false" | sudo debconf-communicate
sudo dpkg-reconfigure man-db sudo dpkg-reconfigure man-db
sudo apt-get download binutils-aarch64-linux-gnu sudo apt-get update
sudo dpkg -i binutils-aarch64-linux-gnu_*.deb sudo apt-get install --no-install-recommends --no-install-suggests binutils-aarch64-linux-gnu
- name: Generate debug asm files - name: Generate debug asm files
if: strategy.job-index == 0 if: strategy.job-index == 0
run: | run: |
python tools/make_example.py python tools/make_example.py
python tools/extract_code.py "bin/test.copapy" "bin/test.copapy.bin" python tools/extract_code.py "bin/test.copapy" "bin/test.copapy.bin"
objdump -D -b binary -m i386:x86-64 --adjust-vma=0x1000 bin/test.copapy.bin > bin/test.copapy.asm objdump -D -b binary -m i386:x86-64 --adjust-vma=0x1000 bin/test.copapy.bin > bin/test.copapy.asm
echo '<p>test.copapy.asm</p>' >> $GITHUB_STEP_SUMMARY echo '<p>test.copapy.asm</p>' >> $GITHUB_STEP_SUMMARY