Skip to content

Commit

Permalink
Added automatic updating of Cuda versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
MoFtZ authored and m4rs-mt committed Feb 15, 2023
1 parent 938a705 commit ddf22ab
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/updateCudaVersions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: 'Update Cuda Versions'

on:
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.'

0 comments on commit ddf22ab

Please sign in to comment.