cgen: fix codegen for option value on map_set
(fix #23650) (#23652)
#24
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
name: hub_docker_ci | |
on: | |
workflow_dispatch: | |
push: | |
tags: | |
- '[0-9].[0-9]+.[0-9]+' # trigger on new release tag | |
- 'weekly.*' # trigger on weekly tag | |
jobs: | |
publish-new-docker-images: | |
strategy: | |
matrix: | |
os: [debian, alpine] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
repository: 'vlang/docker' | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to hub.docker.com | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: generate tags conditionally | |
id: gen_tags | |
run: | | |
if [[ ${{ matrix.os }} == 'debian' ]]; then | |
echo 'TAGS=thevlang/vlang:latest,thevlang/vlang:${{ matrix.os }}' >> $GITHUB_OUTPUT | |
else | |
echo 'TAGS=thevlang/vlang:${{ matrix.os }}' >> $GITHUB_OUTPUT | |
fi | |
- uses: docker/build-push-action@v6 | |
name: Build and deploy v image | |
with: | |
context: . | |
platforms: linux/amd64,linux/arm64 | |
tags: ${{ steps.gen_tags.outputs.TAGS }} | |
file: docker/vlang/Dockerfile.${{ matrix.os }} | |
push: true | |
build-args: 'USER=thevlang' | |
cache-from: type=registry,ref=thevlang/vlang:${{ matrix.os }}-buildcache | |
cache-to: type=registry,ref=thevlang/vlang:${{ matrix.os }}-buildcache,mode=max | |
- uses: docker/build-push-action@v6 | |
name: Build and deploy developer build | |
with: | |
context: . | |
platforms: linux/amd64,linux/arm64 | |
tags: thevlang/vlang:${{ matrix.os }}-dev | |
file: docker/vlang/Dockerfile.${{ matrix.os }}.dev-full | |
build-args: 'USER=thevlang' | |
push: true | |
cache-from: type=registry,ref=thevlang/vlang:${{ matrix.os }}-dev-buildcache | |
cache-to: type=registry,ref=thevlang/vlang:${{ matrix.os }}-dev-buildcache,mode=max |