Skip to content

Commit feadba9

Browse files
authored
Merge pull request #756 from imageworks/codecov-workflow-v3
Codecov workflow v3 and branch rename
2 parents 34f8395 + 9599336 commit feadba9

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

.github/workflows/coverage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- "crates/**.rs"
77
push:
88
branches:
9-
- master
9+
- main
1010
paths:
1111
# Only run coverage report if the sources have changed
1212
- "src/**.rs"
@@ -53,6 +53,6 @@ jobs:
5353
# this feature is enabled.
5454
spfs run - -- bash -c 'cargo tarpaulin --features migration-to-components --workspace --verbose --timeout 120 --out Xml'
5555
- name: Upload to codecov.io
56-
uses: codecov/codecov-action@v2
56+
uses: codecov/codecov-action@v3
5757
with:
5858
token: ${{ secrets.CODECOV_TOKEN }}

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ repos private (prior to announced public release of the open source project), pl
113113
3. Edit, compile, and test your changes in a topic branch:
114114

115115
```
116-
$ git checkout -b mytopic master
116+
$ git checkout -b mytopic main
117117
$ ... do your edits ...
118118
```
119119

@@ -141,4 +141,4 @@ committed. Sometimes this takes a few rounds of give and take. Please don't
141141
take it hard if your first try is not accepted. It happens to all of us.
142142

143143
8. After approval, one of the senior developers (with commit approval to the
144-
official main repository) will merge your fixes into the master branch.
144+
official main repository) will merge your fixes into the main branch.

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -209,15 +209,15 @@ cargo bench --bench spfs_bench
209209
A common workflow as described [here](https://bheisler.github.io/criterion.rs/book/user_guide/command_line_options.html#baselines) is to record a baseline measurement to use as a reference to compare future measurements to.
210210

211211
```sh
212-
git checkout master
213-
# Record baseline with name "master"
214-
cargo bench --bench spfs_bench -- --save-baseline master
212+
git checkout main
213+
# Record baseline with name "main"
214+
cargo bench --bench spfs_bench -- --save-baseline main
215215

216216
git checkout topic-branch
217217
# While iterating, this creates a new baseline called "new", and
218218
# will report on the change since the most recent "new".
219219
cargo bench --bench spfs_bench
220220

221-
# Compare to "master"
222-
cargo bench --bench spfs_bench -- --load-baseline new --baseline master
221+
# Compare to "main"
222+
cargo bench --bench spfs_bench -- --load-baseline new --baseline main
223223
```

docs/use/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ $ spk env --local my-pkg
3434
```
3535

3636
Use the [Package Definition Guide](spec) for more details.
37-
Check the included [examples](https://github.com/imageworks/spk/tree/master/examples) for additional help.
37+
Check the included [examples](https://github.com/imageworks/spk/tree/main/examples) for additional help.
3838

3939
For more detailed information on the build process, check the [Package Build Process](build)
4040

docs/use/spec.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ You can include sources from mulitple location, but will need to specify a subdi
9393
sources:
9494
# clones this git repo into the 'someproject' subdirectory
9595
- git: https://github.com/someuser/someproject
96-
ref: master
96+
ref: main
9797
subdir: someproject
9898
# copies the contents of the spec file's location into the 'src' subdirectory
9999
- path: ./

packages/openimageio/openimageio.spk.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ api: v0/package
77
# - license: BSD-3-clause
88
# - bindings: [ "C++", "C", "Python", "cli" ]
99

10-
# If building off the master/development branch of OIIO, there is no
10+
# If building off the main/development branch of OIIO, there is no
1111
# guarantee of API or ABI compatibility (except for the most minor level of
1212
# patches), so be stricter than usual, with "x.x.a.b". If building from a
1313
# release branch, however, the usual x.a.b correctly reflects OIIO's
1414
# compatibility promises for release branches.
1515
#
16-
# Also, if using a "master" OIIO, downstream packages should specify it as:
16+
# Also, if using a "main" OIIO, downstream packages should specify it as:
1717
# - pkg: openimageio
1818
# fromBuildEnv: Binary
1919
#

packages/osl/osl.spk.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ api: v0/package
77
# - license: BSD-3-clause
88
# - bindings: [ "C++", "Python", "cli" ]
99

10-
# If building off the master/development branch of OSL, there is no
10+
# If building off the main/development branch of OSL, there is no
1111
# guarantee of API or ABI compatibility (except for the most minor level of
1212
# patches), so be stricter than usual, with "x.x.a.b". If building from a
1313
# release branch, however, the usual x.a.b correctly reflects OSL's

0 commit comments

Comments
 (0)