Skip to content

Commit

Permalink
Add curl for QEMU
Browse files Browse the repository at this point in the history
  • Loading branch information
widgetii committed Mar 24, 2024
1 parent 4d3b064 commit f6ae58b
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion .github/workflows/arch.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Arch
name: QEMU

on: [push]

Expand Down Expand Up @@ -28,4 +28,26 @@ jobs:
# Not required, but speeds up builds
githubToken: ${{ github.token }}

# Install some dependencies in the container. This speeds up builds if
# you are also using githubToken. Any dependencies installed here will
# be part of the container image that gets cached, so subsequent
# builds don't have to re-install them. The image layer is cached
# publicly in your project's package repository, so it is vital that
# no secrets are present in the container state or logs.
install: |
case "${{ matrix.distro }}" in
ubuntu*|jessie|stretch|buster|bullseye)
apt-get update -q -y
apt-get install -q -y git curl
;;
fedora*)
dnf -y update
dnf -y install git curl
;;
alpine*)
apk update
apk add curl
;;
esac
run: ./install.sh

0 comments on commit f6ae58b

Please sign in to comment.