Update Cuda Versions #36
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: 'Update Cuda Versions' | |
on: | |
workflow_dispatch: # Allows you to run this workflow manually from the Actions tab | |
schedule: | |
- cron: '0 0 * * 5' # Run once every Friday, at midnight. | |
jobs: | |
update-cuda-versions: | |
# Only run on main repository | |
if: github.repository == 'm4rs-mt/ILGPU' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup the latest .NET 7 SDK | |
uses: actions/[email protected] | |
with: | |
dotnet-version: 7.0.x | |
- name: Update Cuda versions | |
uses: technote-space/create-pr-action@v2 | |
with: | |
EXECUTE_COMMANDS: | | |
dotnet run --configuration=Release -p:TreatWarningsAsErrors=true --project Tools/CudaVersionUpdateTool | |
COMMIT_MESSAGE: 'Bump Cuda versions.' | |
COMMIT_NAME: 'ILGPU CLI' | |
COMMIT_EMAIL: '[email protected]' | |
PR_BRANCH_PREFIX: 'schedule/' | |
PR_BRANCH_NAME: 'update-cuda-versions' | |
PR_TITLE: 'Bump Cuda versions.' |