Skip to content

Commit

Permalink
Replace crun
Browse files Browse the repository at this point in the history
  • Loading branch information
matbme committed Apr 18, 2024
1 parent ccd8bc2 commit 4068e8c
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,16 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Install test dependencies
# https://noobient.com/2023/11/15/fixing-ubuntu-containers-failing-to-start-with-systemd/
- name: Setup podman
run: |
echo -e "Replacing $(crun --version | head -1) with newer"
sudo apt-get install -y podman
sudo CRUN_VER='1.11.2' curl -L "https://github.com/containers/crun/releases/download/${CRUN_VER}/crun-${CRUN_VER}-linux-amd64" -o "/usr/bin/crun"
sudo chmod +x "/usr/bin/crun"
- name: Install test dependencies
run: |
curl -s https://raw.githubusercontent.com/89luca89/distrobox/1.7.1/install | sudo sh
./utils/create_test_env.sh
Expand Down

0 comments on commit 4068e8c

Please sign in to comment.