compatiable for ray lastest 2.9.3 version #152
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: debian-manylinux-building | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
env: | |
OSS_HOST: oss-us-west-1.aliyuncs.com | |
OSS_BUCKET: ray-mobius-us | |
OSS_ID: ${{ secrets.OSS_ID }} | |
OSS_KEY: ${{ secrets.OSS_KEY }} | |
jobs: | |
streaming-debian-manylinux-pipeline: | |
timeout-minutes: 120 | |
runs-on: ubuntu-20.04 | |
container: quay.io/pypa/manylinux_2_24_x86_64 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Apt get update and Install bazel | |
run: | | |
cp /etc/apt/sources.list /etc/apt/sources.list.bak | |
cp .github/sources.list /etc/apt/sources.list | |
apt-get update | |
apt-get install -yq wget openjdk-8-jdk zlib1g-dev zip git | |
apt-get update | |
apt-get install -yq gcc g++ | |
sh scripts/install-bazel.sh | |
- name: Streaming python manylinux | |
run: sh -c "bash streaming/python/build_wheels.sh" | |
- name: Package to aliyun oss | |
run: | | |
sh -c "bash scripts/ossutils.sh install" | |
sh -c "bash scripts/ossutils.sh publish_python" |