Update GPU driver #125
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 GPU driver | |
on: | |
schedule: | |
- cron: '0 3 * * 2' | |
workflow_dispatch: | |
jobs: | |
update_driver_linux: | |
runs-on: ubuntu-20.04 | |
if: github.repository == 'intel/llvm' | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Update dependencies file | |
run: | | |
version="$(python3 devops/scripts/update_drivers.py linux)" | |
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 "[email protected]" | |
git checkout -B $BRANCH | |
git add -u | |
git commit -m "[GHA] Uplift Linux GPU RT version to $NEW_DRIVER_VERSION" || exit 0 # exit if commit is empty | |
git push https://[email protected]/${{ github.repository }} ${BRANCH} | |
gh pr create --head $BRANCH --title "[GHA] Uplift Linux GPU RT version to $NEW_DRIVER_VERSION" --body "Scheduled drivers uplift" |