Skip to content

Commit efe78dd

Browse files
committed
Files generated by PkgTemplates
PkgTemplates version: 0.7.38
1 parent a7c37af commit efe78dd

File tree

12 files changed

+205
-0
lines changed

12 files changed

+205
-0
lines changed

.github/workflows/CI.yml

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
name: CI
2+
on:
3+
push:
4+
branches:
5+
- main
6+
tags: ['*']
7+
pull_request:
8+
concurrency:
9+
# Skip intermediate builds: always.
10+
# Cancel intermediate builds: only if it is a pull request build.
11+
group: ${{ github.workflow }}-${{ github.ref }}
12+
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
13+
jobs:
14+
test:
15+
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
16+
runs-on: ${{ matrix.os }}
17+
strategy:
18+
fail-fast: false
19+
matrix:
20+
version:
21+
- '1.11'
22+
- '1.8'
23+
- 'nightly'
24+
os:
25+
- ubuntu-latest
26+
arch:
27+
- x64
28+
steps:
29+
- uses: actions/checkout@v3
30+
- uses: julia-actions/setup-julia@v1
31+
with:
32+
version: ${{ matrix.version }}
33+
arch: ${{ matrix.arch }}
34+
- uses: julia-actions/cache@v1
35+
- uses: julia-actions/julia-buildpkg@v1
36+
- uses: julia-actions/julia-runtest@v1
37+
docs:
38+
name: Documentation
39+
runs-on: ubuntu-latest
40+
permissions:
41+
contents: write
42+
statuses: write
43+
steps:
44+
- uses: actions/checkout@v3
45+
- uses: julia-actions/setup-julia@v1
46+
with:
47+
version: '1'
48+
- name: Configure doc environment
49+
run: |
50+
julia --project=docs/ -e '
51+
using Pkg
52+
Pkg.develop(PackageSpec(path=pwd()))
53+
Pkg.instantiate()'
54+
- uses: julia-actions/julia-buildpkg@v1
55+
- uses: julia-actions/julia-docdeploy@v1
56+
env:
57+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
58+
- run: |
59+
julia --project=docs -e '
60+
using Documenter: DocMeta, doctest
61+
using OpenBLAS32
62+
DocMeta.setdocmeta!(OpenBLAS32, :DocTestSetup, :(using OpenBLAS32); recursive=true)
63+
doctest(OpenBLAS32)'

.github/workflows/CompatHelper.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: CompatHelper
2+
on:
3+
schedule:
4+
- cron: 0 0 * * *
5+
workflow_dispatch:
6+
jobs:
7+
CompatHelper:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Pkg.add("CompatHelper")
11+
run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
12+
- name: CompatHelper.main()
13+
env:
14+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
15+
COMPATHELPER_PRIV: ${{ secrets.DOCUMENTER_KEY }}
16+
run: julia -e 'using CompatHelper; CompatHelper.main()'

.github/workflows/TagBot.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: TagBot
2+
on:
3+
issue_comment:
4+
types:
5+
- created
6+
workflow_dispatch:
7+
inputs:
8+
lookback:
9+
default: 3
10+
permissions:
11+
actions: read
12+
checks: read
13+
contents: write
14+
deployments: read
15+
issues: read
16+
discussions: read
17+
packages: read
18+
pages: read
19+
pull-requests: read
20+
repository-projects: read
21+
security-events: read
22+
statuses: read
23+
jobs:
24+
TagBot:
25+
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
26+
runs-on: ubuntu-latest
27+
steps:
28+
- uses: JuliaRegistries/TagBot@v1
29+
with:
30+
token: ${{ secrets.GITHUB_TOKEN }}
31+
ssh: ${{ secrets.DOCUMENTER_KEY }}

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/Manifest.toml
2+
/docs/Manifest.toml
3+
/docs/build/

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2023 Viral B. Shah <[email protected]> and contributors
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

Project.toml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name = "OpenBLAS32"
2+
uuid = "51095b67-9e93-468d-a683-508b52f74e81"
3+
authors = ["Viral B. Shah <[email protected]> and contributors"]
4+
version = "1.0.0-DEV"
5+
6+
[compat]
7+
julia = "1.8"
8+
9+
[extras]
10+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
11+
12+
[targets]
13+
test = ["Test"]

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# OpenBLAS32
2+
3+
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://JuliaLinearAlgebra.github.io/OpenBLAS32.jl/stable/)
4+
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://JuliaLinearAlgebra.github.io/OpenBLAS32.jl/dev/)
5+
[![Build Status](https://github.com/JuliaLinearAlgebra/OpenBLAS32.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/JuliaLinearAlgebra/OpenBLAS32.jl/actions/workflows/CI.yml?query=branch%3Amain)

docs/Project.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[deps]
2+
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
3+
OpenBLAS32 = "51095b67-9e93-468d-a683-508b52f74e81"

docs/make.jl

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
using OpenBLAS32
2+
using Documenter
3+
4+
DocMeta.setdocmeta!(OpenBLAS32, :DocTestSetup, :(using OpenBLAS32); recursive=true)
5+
6+
makedocs(;
7+
modules=[OpenBLAS32],
8+
authors="Viral B. Shah <[email protected]> and contributors",
9+
repo="https://github.com/JuliaLinearAlgebra/OpenBLAS32.jl/blob/{commit}{path}#{line}",
10+
sitename="OpenBLAS32.jl",
11+
format=Documenter.HTML(;
12+
prettyurls=get(ENV, "CI", "false") == "true",
13+
canonical="https://JuliaLinearAlgebra.github.io/OpenBLAS32.jl",
14+
edit_link="main",
15+
assets=String[],
16+
),
17+
pages=[
18+
"Home" => "index.md",
19+
],
20+
)
21+
22+
deploydocs(;
23+
repo="github.com/JuliaLinearAlgebra/OpenBLAS32.jl",
24+
devbranch="main",
25+
)

docs/src/index.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
```@meta
2+
CurrentModule = OpenBLAS32
3+
```
4+
5+
# OpenBLAS32
6+
7+
Documentation for [OpenBLAS32](https://github.com/JuliaLinearAlgebra/OpenBLAS32.jl).
8+
9+
```@index
10+
```
11+
12+
```@autodocs
13+
Modules = [OpenBLAS32]
14+
```

0 commit comments

Comments
 (0)