* Upgrade presets for MKL 2025.0, LLVM 19.1.3, nvCOMP 4.1.0.6, PyTor… #178
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: tvm | |
on: | |
push: | |
paths: | |
- tvm/** | |
- .github/workflows/tvm.yml | |
pull_request: | |
paths: | |
- tvm/** | |
- .github/workflows/tvm.yml | |
workflow_dispatch: | |
env: | |
CI_DEPLOY_NEED_CUDA: 1 | |
CI_DEPLOY_MODULE: ${{ github.workflow }} | |
CI_DEPLOY_PLATFORM: ${{ github.job }} | |
CI_DEPLOY_SETTINGS: ${{ secrets.CI_DEPLOY_SETTINGS }} | |
CI_DEPLOY_USERNAME: ${{ secrets.CI_DEPLOY_USERNAME }} | |
CI_DEPLOY_PASSWORD: ${{ secrets.CI_DEPLOY_PASSWORD }} | |
STAGING_REPOSITORY: ${{ secrets.STAGING_REPOSITORY }} | |
jobs: | |
linux-x86_64: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
ext: ["", -gpu] | |
steps: | |
- uses: bytedeco/javacpp-presets/.github/actions/deploy-ubuntu@actions | |
macosx-x86_64: | |
runs-on: macos-12 | |
# strategy: | |
# matrix: | |
# ext: ["", -gpu] | |
steps: | |
- uses: bytedeco/javacpp-presets/.github/actions/deploy-macosx@actions | |
windows-x86_64: | |
runs-on: windows-2019 | |
strategy: | |
matrix: | |
ext: ["", -gpu] | |
steps: | |
- uses: bytedeco/javacpp-presets/.github/actions/deploy-windows@actions | |
redeploy: | |
needs: [linux-x86_64, macosx-x86_64, windows-x86_64] | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: bytedeco/javacpp-presets/.github/actions/redeploy@actions |