Skip to content

Commit

Permalink
Merge pull request #501 from oscar-system/bl/debugwrap
Browse files Browse the repository at this point in the history
  • Loading branch information
benlorenz authored Dec 27, 2024
2 parents a598c97 + 8846c7f commit 3ced229
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/oscar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,3 +111,10 @@ jobs:
run: |
echo '${{ env.oscar_run_doctests }}'
julia --color=yes --project=oscar-dev/project/ -e '${{ env.oscar_run_doctests }}'
- name: Archive wrappers
if: always()
uses: actions/upload-artifact@v4
with:
name: "wrappers-${{ join(matrix.*.name) }} - ${{ matrix.os }} - julia ${{ matrix.julia-version}}"
path: |
~/.julia/scratchspaces/d720cf60-89b5-51f5-aff5-213f193123e7/**/*.cpperl
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*.jl.*.cov
*.jl.mem
local
Manifest.toml
Manifest*.toml
src/generated/json/*.json
src/generated/*.jl
.vscode
Expand Down
2 changes: 1 addition & 1 deletion OscarCI.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
title = "metadata for oscar CI run"

[env]
os = [ "ubuntu-latest" ]
os = [ "ubuntu-24.04" ]
julia-version = [ "~1.6.0-0", "~1.10.0-0"]
# branches = [ "release", "<matching>" ]

Expand Down

2 comments on commit 3ced229

@benlorenz
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register()

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/122053

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.11.24 -m "<description of version>" 3ced229b2869c6dcb2d21a5c3a646e321829c9f9
git push origin v0.11.24

Please sign in to comment.