Skip to content

Commit

Permalink
Retry Ubuntu runner
Browse files Browse the repository at this point in the history
  • Loading branch information
joseph-long committed Aug 15, 2024
1 parent 1672e4c commit f2851a0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-vm-arm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ env:
vmArch: aarch64
jobs:
build-arm-stage1:
runs-on: macos-14
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
name: arm_stage1_vm
path: setup/xvm/stage1_outputs.tar
build-arm-stage2:
runs-on: macos-14
runs-on: ubuntu-latest
needs: build-arm-stage1
permissions:
contents: read
Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:
name: arm_stage2_vm
path: setup/xvm/stage2_outputs.tar
build-arm-stage3:
runs-on: macos-14
runs-on: ubuntu-latest
needs: build-arm-stage2
permissions:
contents: read
Expand Down
6 changes: 2 additions & 4 deletions setup/xvm/_common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,10 @@ fi
export cpuType accelFlag

qemuDisplay=${qemuDisplay:-}
if [[ $qemuDisplay == serial ]]; then
ioFlag="-serial stdio"
elif [[ ! -z $qemuDisplay ]]; then
if [[ ! -z $qemuDisplay ]]; then
ioFlag="-display $qemuDisplay"
else
ioFlag=''
ioFlag='-serial stdio'
fi
export ioFlag

Expand Down

0 comments on commit f2851a0

Please sign in to comment.