mirror of https://github.com/llvm/torch-mlir
Switch to using the new Release builds (#780)
parent
4ef61aa27f
commit
c1026fa95b
|
@ -6,13 +6,6 @@ on:
|
||||||
- main
|
- main
|
||||||
pull_request:
|
pull_request:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
inputs:
|
|
||||||
release_id:
|
|
||||||
description: 'Release id to upload artifacts to'
|
|
||||||
default: ''
|
|
||||||
python_package_version:
|
|
||||||
description: 'Version to use for creating the Python package'
|
|
||||||
default: ''
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
@ -57,40 +50,6 @@ jobs:
|
||||||
export PYTHONPATH="$GITHUB_WORKSPACE/build/tools/torch-mlir/python_packages/torch_mlir"
|
export PYTHONPATH="$GITHUB_WORKSPACE/build/tools/torch-mlir/python_packages/torch_mlir"
|
||||||
python -m e2e_testing.torchscript.main --config=tosa -v
|
python -m e2e_testing.torchscript.main --config=tosa -v
|
||||||
|
|
||||||
# TODO: Only build packages in full Release mode.
|
|
||||||
# On the other hand, having assertions on isn't too bad of an idea at this
|
|
||||||
# early stage.
|
|
||||||
- name: Build Python wheels and smoke test.
|
|
||||||
run: |
|
|
||||||
cd $GITHUB_WORKSPACE
|
|
||||||
python -m pip install wheel
|
|
||||||
TORCH_MLIR_CMAKE_BUILD_DIR="$GITHUB_WORKSPACE/build" \
|
|
||||||
TORCH_MLIR_CMAKE_BUILD_DIR_ALREADY_BUILT=1 \
|
|
||||||
TORCH_MLIR_PYTHON_PACKAGE_VERSION="${{ github.event.inputs.python_package_version }}" \
|
|
||||||
./build_tools/build_python_wheels.sh
|
|
||||||
|
|
||||||
# If we were given a release_id, then upload the package we just built
|
|
||||||
# to the github releases page.
|
|
||||||
- name: Upload Release Assets (if requested)
|
|
||||||
if: github.event.inputs.release_id != ''
|
|
||||||
id: upload-release-assets
|
|
||||||
uses: dwenegar/upload-release-assets@v1
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.WORKFLOW_INVOCATION_TOKEN }}
|
|
||||||
with:
|
|
||||||
release_id: ${{ github.event.inputs.release_id }}
|
|
||||||
assets_path: ./wheelhouse/*.whl
|
|
||||||
# Publishing is necessary to make the release visible to `pip`
|
|
||||||
# on the github releases page.
|
|
||||||
- name: Publish Release (if requested)
|
|
||||||
if: github.event.inputs.release_id != ''
|
|
||||||
id: publish_release
|
|
||||||
uses: eregon/publish-release@v1
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.WORKFLOW_INVOCATION_TOKEN }}
|
|
||||||
with:
|
|
||||||
release_id: ${{ github.event.inputs.release_id }}
|
|
||||||
|
|
||||||
build-out-of-tree:
|
build-out-of-tree:
|
||||||
name: Build out-of-tree (Release Asserts)
|
name: Build out-of-tree (Release Asserts)
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
|
|
|
@ -0,0 +1,64 @@
|
||||||
|
name: Release oneshot snapshot package
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
release_snapshot_package:
|
||||||
|
name: "Tag snapshot release"
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
# Don't run this in everyone's forks.
|
||||||
|
if: github.repository == 'llvm/torch-mlir'
|
||||||
|
steps:
|
||||||
|
- name: Checking out repository
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
token: ${{ secrets.WORKFLOW_INVOCATION_TOKEN }}
|
||||||
|
|
||||||
|
- name: Compute version
|
||||||
|
run: |
|
||||||
|
git fetch --depth=1 origin +refs/tags/*:refs/tags/*
|
||||||
|
package_version="$(printf '%(%Y%m%d)T.${{ github.run_number }}')"
|
||||||
|
tag_name="snapshot-${package_version}"
|
||||||
|
echo "package_version=${package_version}" >> $GITHUB_ENV
|
||||||
|
echo "tag_name=${tag_name}" >> $GITHUB_ENV
|
||||||
|
|
||||||
|
- name: Updating snapshot tag
|
||||||
|
run: |
|
||||||
|
git tag "${tag_name}"
|
||||||
|
|
||||||
|
- name: Pushing changes
|
||||||
|
uses: ad-m/github-push-action@v0.6.0
|
||||||
|
with:
|
||||||
|
github_token: ${{ secrets.WORKFLOW_INVOCATION_TOKEN }}
|
||||||
|
branch: main
|
||||||
|
tags: true
|
||||||
|
|
||||||
|
- name: Create Release
|
||||||
|
id: create_release
|
||||||
|
uses: actions/create-release@v1
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.WORKFLOW_INVOCATION_TOKEN }}
|
||||||
|
with:
|
||||||
|
tag_name: ${{ env.tag_name }}
|
||||||
|
release_name: torch-mlir snapshot ${{ env.tag_name }}
|
||||||
|
body: |
|
||||||
|
Automatic snapshot release of torch-mlir.
|
||||||
|
draft: true
|
||||||
|
prerelease: false
|
||||||
|
|
||||||
|
- name: "Invoke workflow :: Build and Test"
|
||||||
|
uses: benc-uk/workflow-dispatch@v1
|
||||||
|
with:
|
||||||
|
workflow: Build and Test
|
||||||
|
token: ${{ secrets.WORKFLOW_INVOCATION_TOKEN }}
|
||||||
|
ref: "${{ env.tag_name }}"
|
||||||
|
inputs: '{"release_id": "", "python_package_version": "${{ env.package_version }}"}'
|
||||||
|
|
||||||
|
- name: "Invoke workflow :: Release Build"
|
||||||
|
uses: benc-uk/workflow-dispatch@v1
|
||||||
|
with:
|
||||||
|
workflow: Release Build
|
||||||
|
token: ${{ secrets.WORKFLOW_INVOCATION_TOKEN }}
|
||||||
|
ref: "${{ env.tag_name }}"
|
||||||
|
inputs: '{"release_id": "${{ steps.create_release.outputs.id }}", "python_package_version": "${{ env.package_version }}"}'
|
|
@ -56,4 +56,11 @@ jobs:
|
||||||
workflow: Build and Test
|
workflow: Build and Test
|
||||||
token: ${{ secrets.WORKFLOW_INVOCATION_TOKEN }}
|
token: ${{ secrets.WORKFLOW_INVOCATION_TOKEN }}
|
||||||
ref: "${{ env.tag_name }}"
|
ref: "${{ env.tag_name }}"
|
||||||
|
|
||||||
|
- name: "Invoke workflow :: Release Build"
|
||||||
|
uses: benc-uk/workflow-dispatch@v1
|
||||||
|
with:
|
||||||
|
workflow: Release Build
|
||||||
|
token: ${{ secrets.WORKFLOW_INVOCATION_TOKEN }}
|
||||||
|
ref: "${{ env.tag_name }}"
|
||||||
inputs: '{"release_id": "${{ steps.create_release.outputs.id }}", "python_package_version": "${{ env.package_version }}"}'
|
inputs: '{"release_id": "${{ steps.create_release.outputs.id }}", "python_package_version": "${{ env.package_version }}"}'
|
||||||
|
|
Loading…
Reference in New Issue