forked from openxla/stablehlo
-
Notifications
You must be signed in to change notification settings - Fork 0
134 lines (119 loc) · 4.56 KB
/
publishWheelRelease.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
# Copyright 2024 The StableHLO Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: Publish Python Wheel Release
on:
workflow_dispatch:
schedule:
# Runs at 6:00 AM UTC, which is 10:00 PM previous day PST (UTC-8)
- cron: '0 6 * * *'
# Ensure that only a single job or workflow using the same
# concurrency group will run at a time. This would cancel
# any in-progress jobs in the same github workflow and github
# ref (e.g. refs/heads/main or refs/pull/<pr_number>/merge).
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
# TODO(fzakaria): Consider running this job only if a new commit for the day has been done
cmake-build-wheel:
# Only run scheduled CI on main repo
if: (github.repository == 'openxla/stablehlo' || github.event_name != 'schedule')
name: "cmake-build ${{ github.event_name == 'schedule' && '(llvm-project@HEAD)' || ''}}"
env:
LLVM_PROJECT_DIR: "llvm-project"
LLVM_BUILD_DIR: "llvm-build"
# The setup.py script expects the StableHLO build to be in 'build'
STABLEHLO_BUILD_DIR: "build"
strategy:
fail-fast: false
matrix:
python-version: [ "3.10", "3.11", "3.12" ]
runs-on: ${{ github.repository == 'openxla/stablehlo' && 'ubuntu-22.04-64core' || 'ubuntu-22.04' }}
steps:
- name: Checkout StableHLO
uses: actions/checkout@v4
# TODO(fzakaria): We need all the commits and the tags for the
# git describe` command to work to find the correct version.
# This can be removed if the version can be determmined in another way.
with:
fetch-depth: 0
- name: Get LLVM Version
id: llvm-version
shell: bash
run: |
echo "version=$(cat ${{ github.workspace }}/build_tools/llvm_version.txt)" >> $GITHUB_OUTPUT
- name: Setup workspace
uses: ./.github/actions/setup-build
with:
llvm-version: ${{ steps.llvm-version.outputs.version }}
python-version: ${{ matrix.python-version }}
# The actual tool need to execute the python build
# TODO(fzakaria): Consider using cibuildwheel to build multiple wheels at
# once and mark them as manylinux compatible.
- name: Install build dependencies
shell: bash
run: pip install build
- name: Configure and Build LLVM
shell: bash
run: |
./build_tools/github_actions/ci_build_cmake_llvm.sh "$LLVM_PROJECT_DIR" "$LLVM_BUILD_DIR"
env:
CMAKE_BUILD_TYPE: Release
MLIR_ENABLE_BINDINGS_PYTHON: ON
- name: Build and Test StableHLO with Python
shell: bash
run: |
pip install tensorflow-cpu
./build_tools/github_actions/ci_build_cmake.sh "$LLVM_BUILD_DIR" "$STABLEHLO_BUILD_DIR"
env:
CMAKE_BUILD_TYPE: Release
STABLEHLO_ENABLE_BINDINGS_PYTHON: ON
STABLEHLO_ENABLE_PYTHON_TF_TESTS: ON
- name: Build and Test Python Wheel
shell: bash
run: |
./build_tools/github_actions/ci_build_python_wheel.sh "$GITHUB_WORKSPACE/${{ github.sha }}"
- name: Upload an artifact
uses: actions/upload-artifact@v4
with:
if-no-files-found: error
name: build_artifact-${{ matrix.python-version }}
path: ${{ github.sha }}
upload-tarballs:
runs-on: ubuntu-20.04
needs: cmake-build-wheel
strategy:
fail-fast: false
matrix:
python-version: [ "3.10", "3.11", "3.12" ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Download artifacts
uses: actions/download-artifact@v4
with:
name: build_artifact-${{ matrix.python-version }}
path: ${{ github.sha }}
- name: Release current commit
uses: ncipollo/[email protected]
with:
artifacts: "${{ github.sha }}/*.whl"
token: "${{ secrets.PUBLISH_ACCESS_TOKEN }}"
# git describe in setup.py explicitly filters out this tag
tag: "dev-wheels"
name: "dev-wheels"
removeArtifacts: false
allowUpdates: true
replacesArtifacts: true
makeLatest: false