From ef5d62211b9e2a2608c3a0b30beb38f2212e2333 Mon Sep 17 00:00:00 2001 From: vdayanand Date: Thu, 2 May 2024 14:50:40 +0530 Subject: [PATCH 1/6] fix: ignore broken symlinks --- src/JuliaFormatter.jl | 1 + 1 file changed, 1 insertion(+) diff --git a/src/JuliaFormatter.jl b/src/JuliaFormatter.jl index 97dd6c49d..e45c26c09 100644 --- a/src/JuliaFormatter.jl +++ b/src/JuliaFormatter.jl @@ -441,6 +441,7 @@ function format(path::AbstractString, options::Configuration) formatted = Threads.Atomic{Bool}(true) Threads.@threads for subpath in readdir(path) subpath = joinpath(path, subpath) + !ispath(subpath) && continue is_formatted = format(subpath, options) Threads.atomic_and!(formatted, is_formatted) end From a179b6a196956557b6703d76cd85bc77aab23d78 Mon Sep 17 00:00:00 2001 From: vdayanand Date: Fri, 3 May 2024 19:38:34 +0530 Subject: [PATCH 2/6] fix ci --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8e80a3473..830673eb9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,10 +28,10 @@ jobs: - '1.10' # - 'nightly' arch: [x64, x86] - os: [ubuntu-latest, windows-latest, macos-latest] + os: [ubuntu-latest, windows-latest, macos-13] exclude: - - os: macos-latest - arch: x86 + - os: macos-13 + - julia-version: 1.4 steps: - uses: actions/checkout@v4 with: From 130496d9f15f2abfabfdd1b69ae6cb0a7d1566c4 Mon Sep 17 00:00:00 2001 From: vdayanand Date: Fri, 3 May 2024 21:38:36 +0530 Subject: [PATCH 3/6] maybe --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 830673eb9..c99c0d20a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,6 +31,7 @@ jobs: os: [ubuntu-latest, windows-latest, macos-13] exclude: - os: macos-13 + arch: x86 - julia-version: 1.4 steps: - uses: actions/checkout@v4 From ebde2c68fa3abf2df1c69f5d83c0417f83d71349 Mon Sep 17 00:00:00 2001 From: vdayanand Date: Sat, 4 May 2024 21:31:40 +0530 Subject: [PATCH 4/6] excluding 1.4 macos (cherry picked from commit fcb7966df7faabeef3d4d6e7369482a89bc1573f) --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c99c0d20a..79f27e19c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,9 +28,9 @@ jobs: - '1.10' # - 'nightly' arch: [x64, x86] - os: [ubuntu-latest, windows-latest, macos-13] + os: [ubuntu-latest, windows-latest, macos-latest] exclude: - - os: macos-13 + - os: macos-latest arch: x86 - julia-version: 1.4 steps: From 49a5d2f67fff87d9570918c6aa18710153ef3265 Mon Sep 17 00:00:00 2001 From: vdayanand Date: Sun, 5 May 2024 20:21:55 +0530 Subject: [PATCH 5/6] fix --- .github/workflows/ci.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 79f27e19c..830673eb9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,10 +28,9 @@ jobs: - '1.10' # - 'nightly' arch: [x64, x86] - os: [ubuntu-latest, windows-latest, macos-latest] + os: [ubuntu-latest, windows-latest, macos-13] exclude: - - os: macos-latest - arch: x86 + - os: macos-13 - julia-version: 1.4 steps: - uses: actions/checkout@v4 From f91767b75becceaa525ed9f8fd136e08c2ec607c Mon Sep 17 00:00:00 2001 From: Venkatesh Dayananda Date: Mon, 6 May 2024 17:59:01 +0530 Subject: [PATCH 6/6] Update .github/workflows/ci.yml Co-authored-by: Sebastian Pfitzner --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 830673eb9..50b59c538 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,7 +31,7 @@ jobs: os: [ubuntu-latest, windows-latest, macos-13] exclude: - os: macos-13 - - julia-version: 1.4 + version: 1.4 steps: - uses: actions/checkout@v4 with: