Skip to content

Commit

Permalink
Fix path to qemu-wrapper.c
Browse files Browse the repository at this point in the history
Also fix URL in README.md
  • Loading branch information
pguyot committed Apr 30, 2021
1 parent 0693235 commit 49a283b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Path to the image, useful after the step to upload the image as an artifact.

Real world examples include:
- [pguyot/wm8960](https://github.com/pguyot/wm8960/blob/master/.github/workflows/arm-runner.yml) : compilation and tests
- [nabaztag2018/pynab](https://github.com/pguyot/wm8960/blob/master/.github/workflows/arm-runner.yml) : compilation, tests and disk image.
- [nabaztag2018/pynab](https://github.com/nabaztag2018/pynab/blob/master/.github/workflows/arm-runner.yml) : compilation, tests and disk image.

## Releases

Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ runs:
- name: Install qemu wrapper
run: |
sudo mv /usr/bin/qemu-arm-static /usr/bin/qemu-arm-static0
sudo gcc -static qemu-wrapper.c -DQEMU_CPU=${{ inputs.cpu }} -O3 -s -o /usr/bin/qemu-arm-static
sudo gcc -static ${{ github.action_path }}/qemu-wrapper.c -DQEMU_CPU=${{ inputs.cpu }} -O3 -s -o /usr/bin/qemu-arm-static
sudo update-binfmts --disable qemu-arm
sudo update-binfmts --enable qemu-arm
shell: bash
Expand Down

0 comments on commit 49a283b

Please sign in to comment.