Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ci] added wheel build scripts #910

Merged
merged 13 commits into from
May 5, 2022
Prev Previous commit
Next Next commit
polish code and workflow
  • Loading branch information
FrankLeeeee committed May 1, 2022
commit 749b5896acc9ac166d80181c7e2dfc72b05c760f
1 change: 1 addition & 0 deletions .github/workflows/release_bdist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ jobs:
- name: Copy scripts and checkout
run: |
cp -r ./.github/workflows/scripts/* ./
ln -s /github/home/pip_wheels ./pip_wheels
git checkout $git_ref
env:
git_ref: ${{ github.event.inputs.github_ref }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scripts/build_colossalai_wheel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ source activate $1

if [ $1 == "pip" ]
then
wget -q -O ./pip_wheels/$filename $url
wget -nc -q -O ./pip_wheels/$filename $url
pip install ./pip_wheels/$filename

elif [ $1 == 'conda' ]
Expand Down