From 5f361c66d410a4b39cb8c83eb617a5f6e544faaf Mon Sep 17 00:00:00 2001 From: David Anthoff Date: Wed, 29 May 2024 17:01:23 -0700 Subject: [PATCH 1/3] Declare compatible with SymbolServer 8 --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 74a4e85e..fa770979 100644 --- a/Project.toml +++ b/Project.toml @@ -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"] From ab4826ae6b6d9d516b0b24ba5896bad56dadcb7d Mon Sep 17 00:00:00 2001 From: David Anthoff Date: Wed, 29 May 2024 17:08:56 -0700 Subject: [PATCH 2/3] Patch a CI failure --- .github/workflows/jlpkgbutler-ci-pr-workflow.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/jlpkgbutler-ci-pr-workflow.yml b/.github/workflows/jlpkgbutler-ci-pr-workflow.yml index 08f833c5..2f99d58b 100644 --- a/.github/workflows/jlpkgbutler-ci-pr-workflow.yml +++ b/.github/workflows/jlpkgbutler-ci-pr-workflow.yml @@ -11,9 +11,9 @@ jobs: 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] + os: [ubuntu-latest, windows-latest, macos-13] exclude: - - os: macOS-latest + - os: macos-13 julia-arch: x86 steps: From 4fc7d69c955c0b4aa49cbba74aadabe303f7dbfc Mon Sep 17 00:00:00 2001 From: David Anthoff Date: Wed, 29 May 2024 17:26:07 -0700 Subject: [PATCH 3/3] Use different CI setup --- .../jlpkgbutler-ci-master-workflow.yml | 17 +++++++---------- .../workflows/jlpkgbutler-ci-pr-workflow.yml | 13 +++++-------- 2 files changed, 12 insertions(+), 18 deletions(-) diff --git a/.github/workflows/jlpkgbutler-ci-master-workflow.yml b/.github/workflows/jlpkgbutler-ci-master-workflow.yml index dd8c64d6..6aba1cd2 100644 --- a/.github/workflows/jlpkgbutler-ci-master-workflow.yml +++ b/.github/workflows/jlpkgbutler-ci-master-workflow.yml @@ -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: "" @@ -37,4 +34,4 @@ jobs: files: ./lcov.info flags: unittests token: ${{ secrets.CODECOV_TOKEN }} - \ No newline at end of file + \ No newline at end of file diff --git a/.github/workflows/jlpkgbutler-ci-pr-workflow.yml b/.github/workflows/jlpkgbutler-ci-pr-workflow.yml index 2f99d58b..72cda2d2 100644 --- a/.github/workflows/jlpkgbutler-ci-pr-workflow.yml +++ b/.github/workflows/jlpkgbutler-ci-pr-workflow.yml @@ -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] + 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-13 - julia-arch: x86 - + 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: "" @@ -33,4 +30,4 @@ jobs: with: files: ./lcov.info flags: unittests - token: ${{ secrets.CODECOV_TOKEN }} + token: ${{ secrets.CODECOV_TOKEN }} \ No newline at end of file