29 lines
1.2 KiB
YAML
29 lines
1.2 KiB
YAML
|
# This workflow will run whenever there is a change to the version of LLVM the project is based on
|
||
|
# It will create a new Docker image for the TravisCI build and push it to Docker Hub
|
||
|
# This image contains the prereqs for building onnx-mlir including a precompiled copy of the appropriate
|
||
|
# LLVM and MLIR code.
|
||
|
|
||
|
name: Build Docker Prereq Image
|
||
|
|
||
|
# Run this workflow when there is a change to clone-mlir.sh (that implies a new version of LLVM is being used)
|
||
|
on:
|
||
|
push:
|
||
|
paths:
|
||
|
- 'utils/clone-mlir.sh'
|
||
|
|
||
|
jobs:
|
||
|
# This workflow contains a single job called "build"
|
||
|
build:
|
||
|
# The type of runner that the job will run on
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
# Steps represent a sequence of tasks that will be executed as part of the job
|
||
|
steps:
|
||
|
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
|
||
|
- uses: actions/checkout@v2
|
||
|
- name: build image
|
||
|
run: |
|
||
|
docker build --tag onnxmlirczar/onnx-mlir-llvmimage:initial -f $GITHUB_WORKSPACE/.github/workflows/prereq.Dockerfile $GITHUB_WORKSPACE/utils
|
||
|
docker login -u onnxmlirczar -p 143f1da2-332f-45a1-8587-d6cb07c13230
|
||
|
docker push onnxmlirczar/onnx-mlir-llvmimage:initial
|