Skip to content

Commit 2bde318

Browse files
authored
Merge branch 'master' into vs/ci
2 parents 8635340 + ec563a4 commit 2bde318

File tree

5 files changed

+19
-9
lines changed

5 files changed

+19
-9
lines changed

.github/FUNDING.yml

Lines changed: 0 additions & 1 deletion
This file was deleted.

.github/dependabot.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "monthly"
7+
labels:
8+
- "dependencies"
9+
- "no changelog"

.github/workflows/CI.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ jobs:
99
test:
1010
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
1111
runs-on: ${{ matrix.os }}
12+
env:
13+
JULIA_NUM_THREADS: '1'
1214
strategy:
1315
fail-fast: false
1416
matrix:

.github/workflows/TagBot.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,18 @@ on:
33
issue_comment:
44
types:
55
- created
6+
workflow_dispatch:
7+
inputs:
8+
lookback:
9+
default: "3"
610
jobs:
711
TagBot:
12+
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
813
runs-on: ubuntu-latest
914
steps:
1015
- uses: JuliaRegistries/TagBot@v1
1116
with:
1217
token: ${{ secrets.GITHUB_TOKEN }}
18+
# Edit the following line to reflect the actual name of the GitHub Secret containing your private key
19+
ssh: ${{ secrets.DOCUMENTER_KEY }}
20+
# ssh: ${{ secrets.NAME_OF_MY_SSH_PRIVATE_KEY_SECRET }}

README.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
# JavaCall.jl
22

33
![master GHA CI](https://github.com/JuliaInterop/JavaCall.jl/actions/workflows/CI.yml/badge.svg)
4-
![v0.7 GHA CI](https://github.com/JuliaInterop/JavaCall.jl/actions/workflows/CI.yml/badge.svg?branch=v0.7)
5-
[![Windows x86 CI](https://ci.appveyor.com/api/projects/status/qeu6ul9o9s6t5tiw?svg=true)](https://ci.appveyor.com/project/aviks/javacall-jl-6c24s)
6-
[![Gitter](https://badges.gitter.im/JavaCall-jl/community.svg)](https://gitter.im/JavaCall-jl/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
74

85
Call Java programs from Julia.
96

@@ -51,11 +48,6 @@ julia> jcall(out, "println", Nothing, (JString,), "Hello World")
5148
Hello World
5249
```
5350

54-
## Versions
55-
56-
* 0.7 branch is currently being maintained for bug fixes only
57-
* master branch is currently proposed to be v0.8.0
58-
5951
## Julia version compatibility
6052

6153
Julia 1.3.0 through Julia 1.6.2 are tested and guaranteed to work on Linux, macOS, and Windows via continuous integration. Julia 1.6.2 and newer should work on Linux and Windows. The `JULIA_COPY_STACKS` environment variable should be set to `1` on macOS and Linux, but not Windows.

0 commit comments

Comments
 (0)