Skip to content

feat(compiler, vm): adding new AT_SYM_SYM and AT_SYM_INDEX_SYM_INDEX … #499

feat(compiler, vm): adding new AT_SYM_SYM and AT_SYM_INDEX_SYM_INDEX …

feat(compiler, vm): adding new AT_SYM_SYM and AT_SYM_INDEX_SYM_INDEX … #499

Workflow file for this run

name: Build and push Docker images
on:
push:
branches: [ dev ]
tags: [ '*' ]
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Login to Docker Hub
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3.4.0
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Declare some variables
shell: bash
run: |
echo "sha_short=$(git rev-parse --short "$GITHUB_SHA")" >> "$GITHUB_ENV"
echo "branch=$(echo ${GITHUB_REF#refs/heads/})" >> "$GITHUB_ENV"
- name: Set up QEMU
uses: docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 # v3.6.0
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3.10.0
- name: Build and push stable Docker image
uses: docker/build-push-action@1dc73863535b631f98b2378be8619f83b136f4a0 # v6.17.0
with:
file: Dockerfile
tags: arkscript/stable:latest,arkscript/stable:${{ env.sha_short }}
# push the image only if the event that kicked off the workflow was a push of a git tah
push: ${{ startsWith(github.ref, 'refs/tags/') }}
# keep .git repository
context: .
- name: Build and push nightly Docker image
uses: docker/build-push-action@1dc73863535b631f98b2378be8619f83b136f4a0 # v6.17.0
with:
file: Dockerfile
tags: arkscript/nightly:latest,arkscript/nightly:${{ env.sha_short }}
# keep .git repository
context: .
- name: Build and push harden Docker image
uses: docker/build-push-action@1dc73863535b631f98b2378be8619f83b136f4a0 # v6.17.0
with:
file: harden.dockerfile
tags: arkscript/harden:latest
push: true
# keep .git repository
context: .