Skip to content

Commit

Permalink
wip: fix rebase conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
mikhail-sakhnov committed Dec 10, 2024
1 parent 4035670 commit ffaecb0
Showing 1 changed file with 15 additions and 13 deletions.
28 changes: 15 additions & 13 deletions .github/workflows/build-test-vm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,19 +71,21 @@ jobs:
# Sometimes setup-go gets stuck. Without this, it'll keep going until the job gets killed
timeout-minutes: 10
- name: Build daemon image

Check failure on line 73 in .github/workflows/build-test-vm.yaml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/build-test-vm.yaml#L73

step must run script with "run" section or run action with "uses" section [syntax-check]
Raw output
.github/workflows/build-test-vm.yaml:73:9: step must run script with "run" section or run action with "uses" section [syntax-check]
uses: docker/build-push-action@v6
env:
GO_BASE_IMG: ${{ format('localhost:5000/neondatabase/autoscaling-go-base-{0}:dev', inputs.arch) }}
with:
context: .
push: false
platforms: linux/${{ inputs.arch }}
file: neonvm-daemon/Dockerfile
cache-from: type=registry,ref=cache.neon.build/neonvm-daemon:cache
cache-to: ${{ github.ref_name == 'main' && 'type=registry,ref=cache.neon.build/neonvm-daemon:cache,mode=max' || '' }}
tags: ${{ steps.tags.outputs.daemon }}
build-args: |
GO_BASE_IMG=${{ env.GO_BASE_IMG }}
- run: make docker-build-daemon
# - name: Build daemon image
# uses: docker/build-push-action@v6
# env:
# GO_BASE_IMG: ${{ format('localhost:5000/neondatabase/autoscaling-go-base-{0}:dev', inputs.arch) }}
# with:
# context: .
# push: false
# platforms: linux/${{ inputs.arch }}
# file: neonvm-daemon/Dockerfile
# cache-from: type=registry,ref=cache.neon.build/neonvm-daemon:cache
# cache-to: ${{ github.ref_name == 'main' && 'type=registry,ref=cache.neon.build/neonvm-daemon:cache,mode=max' || '' }}
# tags: ${{ steps.tags.outputs.daemon }}
# build-args: |
# GO_BASE_IMG=${{ env.GO_BASE_IMG }}
- run: make bin/vm-builder
env:
IMG_DAEMON: ${{ steps.tags.outputs.daemon }}
Expand Down

0 comments on commit ffaecb0

Please sign in to comment.