From b773ce66d2e6810489b0434f9beed5112e853913 Mon Sep 17 00:00:00 2001 From: Kirill Azovtsev Date: Tue, 23 Apr 2024 01:52:50 +0300 Subject: [PATCH] setup buildx test with additional steps --- .github/workflows/autotests-custom.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/autotests-custom.yaml b/.github/workflows/autotests-custom.yaml index baf18ba7ed..1418ae3071 100644 --- a/.github/workflows/autotests-custom.yaml +++ b/.github/workflows/autotests-custom.yaml @@ -10,11 +10,25 @@ on: jobs: autotests: + strategy: + fail-fast: false + matrix: + options: + - name: "Self-hosted: Minideb: Build Debug" + build-type: "Debug" + name: "${{ matrix.options.name }}" runs-on: [ actions-runner-controller ] container: qdrvm/kagome-dev@sha256:2d70246c32418a3dd45c246d3f5c2dd99bdafde145b903271849affe476c4cfc steps: + - uses: actions/checkout@dc323e67f16fb5f7663d20ff7941f27f5809e9b6 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v1 + - name: Login to Docker Hub + uses: docker/login-action@v1 + with: + username: ${{ secrets.DOCKER_USERNAME }} + password: ${{ secrets.DOCKER_TOKEN }} + # runs-on: ubuntu-latest # container: soramitsu/kagome-autotests:latest # steps: