Skip to content

Commit

Permalink
chore: run rootless mode in nighlty builds (#2611)
Browse files Browse the repository at this point in the history
  • Loading branch information
mdelapenya authored Jun 27, 2024
1 parent bca5a28 commit 4b0a7ec
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/docker-moby-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,20 @@ on:

jobs:
test_latest_moby:
strategy:
matrix:
rootless-docker: [true, false]
name: "Core tests using latest moby/moby"
runs-on: 'ubuntu-latest'
steps:
- name: Setup rootless Docker
if: ${{ matrix.rootless-docker }}
uses: ScribeMD/rootless-docker@6bd157a512c2fafa4e0243a8aa87d964eb890886 # v0.2.2

- name: Remove Docker root socket
if: ${{ matrix.rootless-docker }}
run: sudo rm -rf /var/run/docker.sock

- name: Check out code into the Go module directory
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4

Expand Down

0 comments on commit 4b0a7ec

Please sign in to comment.