fix bind mount too short #9
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
jobs: | |
docker: | |
runs-on: buildjet-4vcpu-ubuntu-2204-arm | |
permissions: | |
packages: write | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: docker/setup-qemu-action@v2 | |
- uses: docker/setup-buildx-action@v2 | |
- uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- uses: docker/build-push-action@v4 | |
with: | |
file: etc/packaging/32bit/Dockerfile | |
tags: ghcr.io/viamrobotics/viam-server:armv7 | |
pull: true # todo: this seems to not be working -- read buildjet + docker caching docs | |
push: true | |
platforms: linux/armv7 | |
build: | |
needs: [docker] | |
runs-on: buildjet-4vcpu-ubuntu-2204-arm | |
permissions: | |
packages: read | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: docker/setup-qemu-action@v2 | |
- uses: docker/setup-buildx-action@v2 | |
- uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: build | |
run: | | |
docker run --platform linux/armv7 --rm -v ./:/rdk ghcr.io/viamrobotics/viam-server:armv7 go build -v -tags no_pigpio,no_tflite ./web/cmd/server | |
file server |