Skip to content

Commit

Permalink
Add workflow to update igc driver
Browse files Browse the repository at this point in the history
  • Loading branch information
jsji committed Apr 17, 2024
1 parent c6f4b49 commit 9614db1
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/sycl-update-igc-dev-driver.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Update IGC dev driver

on:
schedule:
- cron: '0 3 * * 1,4'
workflow_dispatch:

permissions: read-all

jobs:
update_driver_linux:
permissions:
contents: write # for Git to git push
runs-on: ubuntu-20.04
if: github.repository == 'intel/llvm'
steps:
- uses: actions/checkout@v4
- name: Update dependencies file
run: |
version="$(python3 devops/scripts/update_drivers.py linux --igc-dev-only)"
echo 'NEW_DRIVER_VERSION='$version >> $GITHUB_ENV
- name: Create Pull Request
env:
BRANCH: ci/update_gpu_driver-linux-${{ env.NEW_DRIVER_VERSION }}
GITHUB_TOKEN: ${{ secrets.LLVM_MAIN_SYNC_BBSYCL_TOKEN }}
run: |
cd $GITHUB_WORKSPACE
git config --global user.name "GitHub Actions"
git config --global user.email "actions@github.com"
git checkout -B $BRANCH
git add -u
git commit -m "[GHA] Uplift Linux IGC Dev RT version to $NEW_DRIVER_VERSION" || exit 0 # exit if commit is empty
git show
git push https://$GITHUB_TOKEN@github.com/${{ github.repository }} ${BRANCH}
gh pr create --head $BRANCH --title "[GHA] Uplift Linux IGC Dev RT version to $NEW_DRIVER_VERSION" --body "Scheduled igc dev drivers uplift"

0 comments on commit 9614db1

Please sign in to comment.