Skip to content

Commit

Permalink
Test consecutive PR (#346)
Browse files Browse the repository at this point in the history
Merge all new advancements on the `benchx` branch in order to do a follow up consecutive PR to test github actions
  • Loading branch information
filchristou authored Feb 26, 2024
1 parent b274d35 commit 3e9bac9
Show file tree
Hide file tree
Showing 36 changed files with 801 additions and 949 deletions.
7 changes: 7 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/" # Location of package manifests
schedule:
interval: "monthly"
18 changes: 18 additions & 0 deletions .github/workflows/TagBot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,22 @@ on:
types:
- created
workflow_dispatch:
inputs:
lookback:
default: 3
permissions:
actions: read
checks: read
contents: write
deployments: read
issues: read
discussions: read
packages: read
pages: read
pull-requests: read
repository-projects: read
security-events: read
statuses: read
jobs:
TagBot:
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
Expand All @@ -12,4 +28,6 @@ jobs:
- uses: JuliaRegistries/TagBot@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
# Edit the following line to reflect the actual name of the GitHub Secret containing your private key
ssh: ${{ secrets.DOCUMENTER_KEY }}
# ssh: ${{ secrets.NAME_OF_MY_SSH_PRIVATE_KEY_SECRET }}
10 changes: 6 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ jobs:
- version: '1.6'
allow_failure: false
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: actions/cache@v1
- uses: actions/cache@v4
env:
cache-name: cache-artifacts
with:
Expand All @@ -53,14 +53,16 @@ jobs:
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v1
- uses: codecov/codecov-action@v4
with:
file: lcov.info
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: false
docs:
name: Documentation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
with:
version: '1'
Expand Down
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,7 @@ benchmark/Manifest.toml
*.cov
/Manifest.toml
notes
/docs/Manifest.toml
/docs/src/index.md
/docs/src/contributing.md
/docs/src/license.md
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"

[compat]
Aqua = "0.6"
ArnoldiMethod = "0.1, 0.2"
ArnoldiMethod = "0.3"
Compat = "3.40, 4"
DataStructures = "0.17, 0.18"
Documenter = "0.27"
Expand Down
4 changes: 2 additions & 2 deletions benchmark/benchmarks.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using BenchmarkTools
using Graphs

const benchdir = dirname(@__FILE__)
const BENCHDIR = dirname(@__FILE__)

const DIGRAPHS = Dict{String,DiGraph}(
"complete100" => complete_digraph(100), "path500" => path_digraph(500)
Expand Down Expand Up @@ -33,7 +33,7 @@ parallelbenchmarks = [
]

foreach(parallelbenchmarks) do bm
include(joinpath(benchdir, bm))
include(joinpath(BENCHDIR, bm))
end

nothing
1,100 changes: 565 additions & 535 deletions benchmark/tune.json

Large diffs are not rendered by default.

292 changes: 0 additions & 292 deletions docs/Manifest.toml

This file was deleted.

Loading

0 comments on commit 3e9bac9

Please sign in to comment.