From 8acf9b321340675638b936168dfc9130a18335a5 Mon Sep 17 00:00:00 2001 From: parithosh Date: Thu, 10 Aug 2023 11:50:22 +0200 Subject: [PATCH] switch to commit ref approach --- .github/workflows/run-tests.yml | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 9c0bde7758..c84e87cdb1 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -69,25 +69,33 @@ jobs: dockerfile-test: runs-on: self-hosted needs: preclear + services: + registry: + image: registry:2 + ports: + - 5000:5000 steps: - name: Checkout this repo uses: actions/checkout@v3.2.0 - name: get git commit hash id: git_commit_hash + shell: bash run: | echo "git_commit_hash=$(echo $(git log --pretty=format:'%h' -n 1))" >> $GITHUB_OUTPUT - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2 + with: + driver-opts: network=host - name: Build and push to local registry uses: docker/build-push-action@v4 with: context: . file: ./docker/Dockerfile - push: false - tags: loclahost/consensus-specs:${{ steps.git_commit_hash.outputs.git_commit_hash }} + push: true + tags: localhost:5000/consensus-specs-dockerfile-test:${{ steps.git_commit_hash.outputs.git_commit_hash }} - name: Test the image run: | - docker run localhost/consensus-specs:${{ steps.git_commit_hash.outputs.git_commit_hash }} pylint --rcfile ./linter.ini --errors-only pysetup + docker run localhost:5000/consensus-specs-dockerfile-test:${{ steps.git_commit_hash.outputs.git_commit_hash }} pylint --rcfile ./linter.ini --errors-only pysetup pyspec-tests: runs-on: self-hosted @@ -134,5 +142,4 @@ jobs: ls -la ./ rm -rf ./* || true rm -rf ./.??* || true - ls -la ./ - + ls -la ./ \ No newline at end of file