File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 30
30
id : qemu
31
31
uses : hakwerk/gha-git-repo-tags@main
32
32
with :
33
- repository : ${{ github.event.inputs.repo }}
33
+ repository : ${{ github.event.inputs.repo || 'qemu/qemu' }}
34
34
limit : 1
35
35
- name : Parse tags
36
36
run : >
@@ -57,19 +57,19 @@ jobs:
57
57
git libglib2.0-dev libfdt-dev libpixman-1-dev zlib1g-dev ninja-build
58
58
libslirp-dev
59
59
version : 1
60
- - name : Checkout ${{ github.event.inputs.repo }} @ ${{ env.latest-tag }}
60
+ - name : Checkout ${{ github.event.inputs.repo || 'qemu/qemu' }} @ ${{ env.latest-tag }}
61
61
if : ${{ contains(env.skip-build, 'false') }}
62
62
uses : actions/checkout@v4
63
63
with :
64
- repository : ${{ github.event.inputs.repo }}
64
+ repository : ${{ github.event.inputs.repo || 'qemu/qemu' }}
65
65
submodules : " true"
66
66
ref : ${{ env.latest-tag }}
67
67
- name : Build
68
68
if : ${{ contains(env.skip-build, 'false') }}
69
69
run : |
70
70
mkdir $GITHUB_WORKSPACE/output && \
71
71
./configure \
72
- --target-list=${{ github.event.inputs.target-list }} \
72
+ --target-list=${{ github.event.inputs.target-list || 'aarch64-softmmu,arm-softmmu' }} \
73
73
--enable-slirp \
74
74
--without-default-features \
75
75
--disable-docs \
You can’t perform that action at this time.
0 commit comments