Skip to content

Commit

Permalink
Use action to install Podman
Browse files Browse the repository at this point in the history
  • Loading branch information
mattbsox committed Sep 19, 2023
1 parent 9d5e3da commit 59673c4
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,16 @@ jobs:
RUNTIME_VERSION: 23.0.0.3
name: ${{ matrix.RUNTIME }} ${{ matrix.RUNTIME_VERSION }}, Java ${{ matrix.java }}, Linux
steps:
- name: Install Podman
uses: gacts/install-podman@v1
with:
# kind: unstable # `testing` by default
qemu: true # `false` by default
- name: Setup Podman
run: |
sudo apt update
sudo apt-get -y install podman
sudo podman machine init --rootful=true
sudo podman machine start
podman version
podman machine init --rootful=true
podman machine start
# Checkout repos
- name: Checkout ci.gradle
uses: actions/checkout@v3
Expand Down

0 comments on commit 59673c4

Please sign in to comment.