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] Update Dependencies #159

Merged
merged 2 commits into from
Jan 26, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci_lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
image: metaprojdev/raf:ci_cpu-v0.19
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0 # Checkout all branches and history.
submodules: 'recursive'
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
echo "${{ github.event.number }}" > job_info/pr.txt
echo "${{ github.event.pull_request.head.sha }}" > job_info/sha.txt
- name: Upload artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
path: job_info
retention-days: 3
12 changes: 6 additions & 6 deletions .github/workflows/ci_unit_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
# https://github.com/haya14busa/action-workflow_run-status/issues/158
- uses: haya14busa/action-workflow_run-status@v1
- name: Download artifact
uses: dawidd6/action-download-artifact@v2
uses: dawidd6/action-download-artifact@v6
with:
workflow: ci_lint.yml
run_id: ${{ github.event.workflow_run.id }}
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
aws-region: us-west-2
- name: Checkout repository
# No need to checkout submodules because we only need the script.
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Test
run: |
# env vars are unavailable in job.if so we have to implement it here.
Expand Down Expand Up @@ -138,7 +138,7 @@ jobs:
aws-region: us-west-2
- name: Checkout repository
# No need to checkout submodules because we only need the script.
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Test
run: |
# env vars are unavailable in job.if so we have to implement it here.
Expand Down Expand Up @@ -184,7 +184,7 @@ jobs:
aws-region: us-west-2
- name: Checkout repository
# No need to checkout submodules because we only need the script.
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Test
run: |
# env vars are unavailable in job.if so we have to implement it here.
Expand Down Expand Up @@ -217,9 +217,9 @@ jobs:
- uses: haya14busa/action-workflow_run-status@v1
- name: Checkout repository
# No need to checkout submodules because we only need to get the HEAD commit hash.
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Download artifact
uses: dawidd6/action-download-artifact@v2
uses: dawidd6/action-download-artifact@v6
with:
workflow: ci_lint.yml
run_id: ${{ github.event.workflow_run.id }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Setup Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to Docker hub
uses: docker/login-action@v1
uses: docker/login-action@v1
with:
username: metaprojdev
password: ${{ secrets.DOCKERHUB_PASSWORD }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/update_tvm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
if: github.repository == 'awslabs/raf'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Update TVM to the latest commit
Expand All @@ -38,11 +38,11 @@ jobs:
title: '[TVM] Update Submodule ${{ steps.date.outputs.now }}'
body: |
_This PR is auto-generated by Github Action Bot._

Please check the CI results before merge it.
If one or more tests failed, please commit necessary changes to this branch (update-submodule-tvm-${{ steps.date.outputs.now }}).

If there are more than one PRs like this, please keep the latest one and manually close others.

cc @awslabs/raf-committer
draft: false
8 changes: 4 additions & 4 deletions .github/workflows/wheel_manylinux_nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ jobs:
# matrix of build configs
config:
- platform: 'cpu'
- cuda: 'cu113'
- cuda: 'cu113'

runs-on: ubuntu-latest
container:
image: metaprojdev/raf:package-cu113

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0 # Checkout all branches and history.
submodules: 'recursive'
Expand All @@ -46,10 +46,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Update PyPI index
if: github.ref == 'refs/heads/main'
env:
GITHUB_TOKEN: ${{ secrets.BOT_TOKEN }}
run: |
python3 scripts/wheel/gen_pypi_index.py --tag nightly
python3 scripts/wheel/gen_pypi_index.py --tag nightly
Loading