From 2c6e8b6ee831a7c9979011fae2a8e427f2ea2fb2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Gronowski?= Date: Fri, 6 Sep 2024 11:58:43 +0200 Subject: [PATCH] gha: test docker master MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Paweł Gronowski --- .github/workflows/master.yml | 39 ++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .github/workflows/master.yml diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml new file mode 100644 index 0000000000..fb658482e7 --- /dev/null +++ b/.github/workflows/master.yml @@ -0,0 +1,39 @@ +name: test + +on: + workflow_dispatch: + push: + pull_request: + +jobs: + amd64: + runs-on: ubuntu-latest + steps: + - + name: Set up Docker + uses: vvoland/ghaction-setup-docker@master + with: + version: master + daemon-config: | + { + "debug": true, + "features": { + "containerd-snapshotter": true + } + } + arm64: + runs-on: ubuntu22_arm64 + steps: + - + name: Set up Docker + uses: vvoland/ghaction-setup-docker@master + with: + version: master + daemon-config: | + { + "debug": true, + "features": { + "containerd-snapshotter": true + } + } +