Skip to content

Fixed JIT

Fixed JIT #94

Workflow file for this run

on: [push]
name: build
jobs:
build-docker:
name: Build docker
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: ghcr.io/redstonewizard08/quickscript/builder:latest
cache-from: type=gha
cache-to: type=gha,mode=max
build:
name: Build
runs-on: ubuntu-latest
needs:
- build-docker
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Cache
uses: actions/cache@v4
env:
cache-name: rust-cache
with:
path: |
~/.cargo
target
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Build
run: bash build.sh
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: binaries
path: bin/*