Update IGC dev driver #56
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 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 "[email protected]" | |
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://[email protected]/${{ 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" |