Skip to content

Commit

Permalink
Merge pull request #305 from Zemnmez/version-pipelining
Browse files Browse the repository at this point in the history
version pipelining
  • Loading branch information
Zemnmez authored Jun 6, 2022
2 parents a692348 + d27d0ed commit eb489fc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/versioning/versioning.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ sequenceDiagram
## Process
### Introduce new 'versioned' branch
- [ ] Versioned branch copies over all commits from main branch
- [ ] Rule that can be run to bump a version when a set of hashed file(s) changes.
### Introduce new 'versioned tests'
- [ ] Versioned tests, which are able to determine if a major minor
or patch version should be bumped as a result of a change, exist.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jobs:
with:
fetch-depth: 0
- name: Checkout 'versioned' branch
run: git checkout
run: git checkout versioned
- name: Merge with our branch
run: git merge main
- name: Open PR to 'versioned' branch
Expand Down
3 changes: 1 addition & 2 deletions bzl/versioning/rules.bzl
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@


def semver_version(name, **kwargs):
_semver_version(
name = name,
Expand Down Expand Up @@ -34,4 +33,4 @@ _semver_version = rule(
"patch": attr.label(allow_single_file = True, mandatory = True),
"output": attr.output(mandatory = True)
}
)
)

0 comments on commit eb489fc

Please sign in to comment.