mirror of
https://github.com/scroll-tech/scroll.git
synced 2026-01-13 16:08:04 -05:00
60 lines
1.5 KiB
YAML
60 lines
1.5 KiB
YAML
name: Intermediate Docker
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
GO_VERSION:
|
|
description: 'Go version'
|
|
required: true
|
|
type: string
|
|
default: '1.19'
|
|
RUST_VERSION:
|
|
description: 'Rust toolchain version'
|
|
required: true
|
|
type: string
|
|
default: 'nightly-2022-12-10'
|
|
PYTHON_VERSION:
|
|
description: 'Python version'
|
|
required: false
|
|
type: string
|
|
default: '3.10'
|
|
CUDA_VERSION:
|
|
description: 'Cuda version'
|
|
required: false
|
|
type: string
|
|
default: '11.7.1'
|
|
|
|
defaults:
|
|
run:
|
|
working-directory: 'build/dockerfiles/intermediate'
|
|
|
|
jobs:
|
|
build-and-push:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v2
|
|
- name: Login to Docker Hub
|
|
uses: docker/login-action@v2
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
- name: Build
|
|
run: |
|
|
make all
|
|
env:
|
|
GO_VERSION: ${{ inputs.GO_VERSION }}
|
|
RUST_VERSION: ${{ inputs.RUST_VERSION }}
|
|
PYTHON_VERSION: ${{ inputs.PYTHON_VERSION }}
|
|
CUDA_VERSION: ${{ inputs.CUDA_VERSION }}
|
|
- name: Publish
|
|
run: |
|
|
make publish
|
|
env:
|
|
GO_VERSION: ${{ inputs.GO_VERSION }}
|
|
RUST_VERSION: ${{ inputs.RUST_VERSION }}
|
|
PYTHON_VERSION: ${{ inputs.PYTHON_VERSION }}
|
|
CUDA_VERSION: ${{ inputs.CUDA_VERSION }}
|