Skip to content

Commit

Permalink
🤖 Change master to main
Browse files Browse the repository at this point in the history
  • Loading branch information
abelsiqueira committed Jul 26, 2021
1 parent 964e313 commit a1d59b2
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Documentation
on:
push:
branches:
- master
- main
tags: '*'
pull_request:
types: [opened, synchronize, reopened]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: CI
on:
push:
branches:
- master
- main
pull_request:
types: [opened, synchronize, reopened]
jobs:
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ docs/build
**/Manifest.toml
benchmark/tune.json
benchmark/commit.md
benchmark/master.md
benchmark/main.md
benchmark/judgement.md
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,18 @@
[docs-stable-url]: https://JuliaSmoothOptimizers.github.io/Krylov.jl/stable
[docs-dev-img]: https://img.shields.io/badge/docs-dev-purple.svg
[docs-dev-url]: https://JuliaSmoothOptimizers.github.io/Krylov.jl/dev
[build-gh-img]: https://github.com/JuliaSmoothOptimizers/Krylov.jl/workflows/CI/badge.svg?branch=master
[build-gh-img]: https://github.com/JuliaSmoothOptimizers/Krylov.jl/workflows/CI/badge.svg?branch=main
[build-gh-url]: https://github.com/JuliaSmoothOptimizers/Krylov.jl/actions
[build-cirrus-img]: https://img.shields.io/cirrus/github/JuliaSmoothOptimizers/Krylov.jl?logo=Cirrus%20CI
[build-cirrus-url]: https://cirrus-ci.com/github/JuliaSmoothOptimizers/Krylov.jl
[codecov-img]: https://codecov.io/gh/JuliaSmoothOptimizers/Krylov.jl/branch/master/graph/badge.svg
[codecov-img]: https://codecov.io/gh/JuliaSmoothOptimizers/Krylov.jl/branch/main/graph/badge.svg
[codecov-url]: https://app.codecov.io/gh/JuliaSmoothOptimizers/Krylov.jl
[doi-img]: https://img.shields.io/badge/DOI-10.5281%2Fzenodo.822073-blue.svg
[doi-url]: https://doi.org/10.5281/zenodo.822073

## How to Cite

If you use Krylov.jl in your work, please cite using the format given in [`CITATION.bib`](https://github.com/JuliaSmoothOptimizers/Krylov.jl/blob/master/CITATION.bib).
If you use Krylov.jl in your work, please cite using the format given in [`CITATION.bib`](https://github.com/JuliaSmoothOptimizers/Krylov.jl/blob/main/CITATION.bib).

## Content

Expand Down
10 changes: 5 additions & 5 deletions benchmark/run_benchmarks.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ filename = (ARGS == [] ? "benchmarks.jl" : ARGS[1]) # gpu.jl, cg_bmark.jl, ...
println("The benchmark script is ", filename)

commit = benchmarkpkg("Krylov", script="benchmark/$filename") # current state of repository
master = benchmarkpkg("Krylov", "master", script="benchmark/$filename")
judgement = judge(commit, master)
main = benchmarkpkg("Krylov", "main", script="benchmark/$filename")
judgement = judge(commit, main)
export_markdown("judgement.md", judgement)
export_markdown("master.md", master)
export_markdown("main.md", main)
export_markdown("commit.md", commit)

gist_json = JSON.parse("""
Expand All @@ -18,8 +18,8 @@ gist_json = JSON.parse("""
"judgement.md": {
"content": "$(escape_string(sprint(export_markdown, judgement)))"
},
"master.md": {
"content": "$(escape_string(sprint(export_markdown, master)))"
"main.md": {
"content": "$(escape_string(sprint(export_markdown, main)))"
},
"commit.md": {
"content": "$(escape_string(sprint(export_markdown, commit)))"
Expand Down

0 comments on commit a1d59b2

Please sign in to comment.