Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ignore ci.yaml and buildifier.yaml from rules-template #77

Merged
merged 2 commits into from
Jul 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 0 additions & 19 deletions .github/workflows/buildifier.yaml

This file was deleted.

31 changes: 0 additions & 31 deletions .github/workflows/ci.yaml

This file was deleted.

4 changes: 4 additions & 0 deletions update_github_workflows.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ function update_github_workflows() {
# 'rules_mylang' for rules_android_ndk and write out the resulting file back to
# rules_android_ndk/.github/workflows.
for ci_file in $(ls); do
if [[ "$ci_file" == "ci.yaml" || "$ci_file" == "buildifier.yaml" ]]; then
# Don't need ci.yaml or buildifier.yaml for rules_android_ndk, since we've already set up BazelCI.
continue
fi
sed "s/rules_mylang/rules_android_ndk/g" "$ci_file" > "$rules_android_ndk_workflows/$ci_file"
done
rm -rf $rules_template_dir
Expand Down