Skip to content

Commit bdf095e

Browse files
committed
Add README stub
Also disables the doc build for now
1 parent 06f44bf commit bdf095e

File tree

2 files changed

+34
-31
lines changed

2 files changed

+34
-31
lines changed

.github/workflows/CI.yml

Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -46,34 +46,34 @@ jobs:
4646
files: lcov.info
4747
token: ${{ secrets.CODECOV_TOKEN }}
4848
fail_ci_if_error: false
49-
docs:
50-
name: Documentation
51-
runs-on: ubuntu-latest
52-
permissions:
53-
actions: write # needed to allow julia-actions/cache to proactively delete old caches that it has created
54-
contents: write
55-
statuses: write
56-
steps:
57-
- uses: actions/checkout@v4
58-
- uses: julia-actions/setup-julia@v2
59-
with:
60-
version: '1'
61-
- uses: julia-actions/cache@v2
62-
- name: Configure doc environment
63-
shell: julia --project=docs --color=yes {0}
64-
run: |
65-
using Pkg
66-
Pkg.develop(PackageSpec(path=pwd()))
67-
Pkg.instantiate()
68-
- uses: julia-actions/julia-buildpkg@v1
69-
- uses: julia-actions/julia-docdeploy@v1
70-
env:
71-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
72-
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
73-
- name: Run doctests
74-
shell: julia --project=docs --color=yes {0}
75-
run: |
76-
using Documenter: DocMeta, doctest
77-
using JuliaLibWrapping
78-
DocMeta.setdocmeta!(JuliaLibWrapping, :DocTestSetup, :(using JuliaLibWrapping); recursive=true)
79-
doctest(JuliaLibWrapping)
49+
# docs:
50+
# name: Documentation
51+
# runs-on: ubuntu-latest
52+
# permissions:
53+
# actions: write # needed to allow julia-actions/cache to proactively delete old caches that it has created
54+
# contents: write
55+
# statuses: write
56+
# steps:
57+
# - uses: actions/checkout@v4
58+
# - uses: julia-actions/setup-julia@v2
59+
# with:
60+
# version: '1'
61+
# - uses: julia-actions/cache@v2
62+
# - name: Configure doc environment
63+
# shell: julia --project=docs --color=yes {0}
64+
# run: |
65+
# using Pkg
66+
# Pkg.develop(PackageSpec(path=pwd()))
67+
# Pkg.instantiate()
68+
# - uses: julia-actions/julia-buildpkg@v1
69+
# - uses: julia-actions/julia-docdeploy@v1
70+
# env:
71+
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
72+
# DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
73+
# - name: Run doctests
74+
# shell: julia --project=docs --color=yes {0}
75+
# run: |
76+
# using Documenter: DocMeta, doctest
77+
# using JuliaLibWrapping
78+
# DocMeta.setdocmeta!(JuliaLibWrapping, :DocTestSetup, :(using JuliaLibWrapping); recursive=true)
79+
# doctest(JuliaLibWrapping)

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,6 @@
44
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://JuliaInterop.github.io/JuliaLibWrapping.jl/dev/)
55
[![Build Status](https://github.com/JuliaInterop/JuliaLibWrapping.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/JuliaInterop/JuliaLibWrapping.jl/actions/workflows/CI.yml?query=branch%3Amain)
66
[![Coverage](https://codecov.io/gh/JuliaInterop/JuliaLibWrapping.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/JuliaInterop/JuliaLibWrapping.jl)
7+
8+
**Note**: currently this is a work-in-progress, and it depends on https://github.com/JuliaLang/julia/pull/59108
9+
See the tests for an example of how to create a `.h` file from the logfile written by `juliac`.

0 commit comments

Comments
 (0)