-
Notifications
You must be signed in to change notification settings - Fork 362
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a workflow to automatically roll DEPS (#1358)
* Add a workflow to automatically roll DEPS Create a GitHub action that syncs all git dependencies, rolls all entries in DEPS to tip-of-tree and commits, then uploads a new GitHub pull request with a trigger to automatically run kokoro tests. The roll-deps script has been updated to not return an error when there are no new commits for a repository. Both the autoroll.yml script and changes to utils/roll-deps are modeled after the scripts in KhronosGroup/SPIRV-Tools. * Update .github/workflows/autoroll.yml Co-authored-by: Steven Perron <stevenperron@google.com> --------- Co-authored-by: Steven Perron <stevenperron@google.com>
- Loading branch information
1 parent
171b8d0
commit e166325
Showing
2 changed files
with
90 additions
and
20 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
# Copyright 2023 The Shaderc Authors. All rights reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,s either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
name: Update dependencies | ||
permissions: | ||
contents: read | ||
|
||
on: | ||
schedule: | ||
- cron: '0 2 * * *' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
update-dependencies: | ||
permissions: | ||
contents: write | ||
pull-requests: write | ||
name: Update dependencies | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
# Checkout the depot tools they are needed by roll_deps.sh | ||
- name: Checkout depot tools | ||
run: git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git | ||
|
||
- name: Update PATH | ||
run: echo "$(pwd)/depot_tools" >> $GITHUB_PATH | ||
|
||
- name: Download dependencies | ||
run: python3 utils/git-sync-deps | ||
|
||
- name: Setup git user information | ||
run: | | ||
git config user.name "GitHub Actions[bot]" | ||
git config user.email "<>" | ||
git checkout -b roll_deps | ||
- name: Update dependencies | ||
run: | | ||
utils/roll-deps | ||
if [[ `git diff HEAD..origin/main --name-only | wc -l` == 0 ]]; then | ||
echo "changed=false" >> $GITHUB_OUTPUT | ||
else | ||
echo "changed=true" >> $GITHUB_OUTPUT | ||
fi | ||
id: update_dependencies | ||
- name: Push changes and create PR | ||
if: steps.update_dependencies.outputs.changed == 'true' | ||
run: | | ||
git push --force --set-upstream origin roll_deps | ||
gh pr create --label 'kokoro:run' --base main -f || true | ||
env: | ||
GITHUB_TOKEN: ${{ github.token }} |
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