From 5aef16309a43ccc52773449acf6bd1d273eaa5a8 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Wed, 8 Feb 2023 11:54:17 +0100 Subject: Makefile: fix make */build recipes --- .github/workflows/ci.yml | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) (limited to '.github/workflows') diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7f379d3..77ad7df 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,7 +36,29 @@ jobs: - name: Unit tests run: python -m unittest --buffer + build_docker: + runs-on: ubuntu-latest + name: 'Build / docker build' + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Build w/ docker build + run: make docker/build + + build_buildx: + runs-on: ubuntu-latest + name: 'Build / docker buildx' + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Build w/ docker buildx + run: | + make buildx/create + make buildx/build + make buildx/rm + test_docker: + needs: [test_local, build_docker, build_buildx] runs-on: ubuntu-latest name: 'Test / Docker' steps: @@ -46,7 +68,7 @@ jobs: run: sudo ./test/integration/docker/test.sh test_example_config: - needs: [test_local, test_docker] + needs: [test_local, build_docker, build_buildx] runs-on: ubuntu-latest name: 'Test / example config' env: -- cgit v1.2.3