Skip to content

Commit

Permalink
Merge pull request #385 from julia-vscode/symbolserver8
Browse files Browse the repository at this point in the history
Declare compatible with SymbolServer 8
  • Loading branch information
davidanthoff authored May 30, 2024
2 parents dd68524 + 4fc7d69 commit 7ac21a3
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 21 deletions.
17 changes: 7 additions & 10 deletions .github/workflows/jlpkgbutler-ci-master-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,16 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
julia-version: ['1.0', '1.1', '1.2', '1.3', '1.4', '1.5', '1.6', '1.7', '1.8', '1.9', '1.10']
julia-arch: [x64, x86]
os: [ubuntu-latest, windows-latest, macOS-latest]
julia-version: ['1.0', '1.1', '1.2', '1.3', '1.4', '1.5', '1.6', '1.7', '1.8', '1.9', '1.10', '1.11']
os: [ubuntu-latest, windows-latest, macos-13]
exclude:
- os: macOS-latest
julia-arch: x86

- os: macos-13
julia-version: 1.4
steps:
- uses: actions/checkout@v3
- uses: julia-actions/setup-julia@v1
- uses: julia-actions/install-juliaup@v1
with:
version: ${{ matrix.julia-version }}
arch: ${{ matrix.julia-arch }}
julia-version: ${{ matrix.julia-version }}
- uses: julia-actions/julia-buildpkg@v1
env:
PYTHON: ""
Expand All @@ -37,4 +34,4 @@ jobs:
files: ./lcov.info
flags: unittests
token: ${{ secrets.CODECOV_TOKEN }}

17 changes: 7 additions & 10 deletions .github/workflows/jlpkgbutler-ci-pr-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,16 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
julia-version: ['1.0', '1.1', '1.2', '1.3', '1.4', '1.5', '1.6', '1.7', '1.8', '1.9', '1.10']
julia-arch: [x64, x86]
os: [ubuntu-latest, windows-latest, macOS-latest]
julia-version: ['1.0', '1.1', '1.2', '1.3', '1.4', '1.5', '1.6', '1.7', '1.8', '1.9', '1.10', '1.11']
os: [ubuntu-latest, windows-latest, macos-13]
exclude:
- os: macOS-latest
julia-arch: x86

- os: macos-13
julia-version: 1.4
steps:
- uses: actions/checkout@v3
- uses: julia-actions/setup-julia@v1
- uses: julia-actions/install-juliaup@v1
with:
version: ${{ matrix.julia-version }}
arch: ${{ matrix.julia-arch }}
julia-version: ${{ matrix.julia-version }}
- uses: julia-actions/julia-buildpkg@v1
env:
PYTHON: ""
Expand All @@ -33,4 +30,4 @@ jobs:
with:
files: ./lcov.info
flags: unittests
token: ${{ secrets.CODECOV_TOKEN }}
token: ${{ secrets.CODECOV_TOKEN }}
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
[compat]
julia = "1"
CSTParser = "3.3"
SymbolServer = "5.1.1, 6.0, 7.0"
SymbolServer = "5.1.1, 6.0, 7.0, 8"

[targets]
test = ["Test", "Pkg", "SHA", "LibGit2"]

0 comments on commit 7ac21a3

Please sign in to comment.