From 6a7ad9ce76b409dd0eea81386de66825eead6dc4 Mon Sep 17 00:00:00 2001 From: Jared Wahlstrand Date: Sat, 21 Sep 2024 17:57:03 -0400 Subject: [PATCH 1/5] try again --- .github/workflows/ci.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 61284651..ca4eeb06 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,7 +38,7 @@ jobs: with: version: ${{ matrix.julia-version }} arch: ${{ matrix.julia-arch }} - - uses: julia-actions/cache@v1 + - uses: julia-actions/cache@v2 - uses: julia-actions/julia-buildpkg@latest - name: GObjectIntrospection tests shell: julia --project=@. --color=yes {0} @@ -48,16 +48,17 @@ jobs: - uses: julia-actions/julia-runtest@latest with: prefix: ${{ matrix.prefix }} + coverage: ${{ matrix.version == '1' && matrix.os == 'ubuntu-latest' && matrix.arch == 'x64' }} - uses: julia-actions/julia-processcoverage@latest - if: startsWith(matrix.os, 'ubuntu') + if: matrix.version == '1' && matrix.os == 'ubuntu-latest' && matrix.arch == 'x64' with: directories: GI/src,src - uses: codecov/codecov-action@v4 - if: startsWith(matrix.os, 'ubuntu') + if: matrix.version == '1' && matrix.os == 'ubuntu-latest' && matrix.arch == 'x64' with: - token: ${{ secrets.CODECOV_TOKEN }} - fail_ci_if_error: false # or true if you want CI to fail when Codecov fails file: lcov.info + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} Documentation: runs-on: ubuntu-latest From 6a2be1276f24167ff29fa9d773d3dd3f591a9691 Mon Sep 17 00:00:00 2001 From: Jared Wahlstrand Date: Sat, 21 Sep 2024 18:28:05 -0400 Subject: [PATCH 2/5] try something else --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ca4eeb06..b9e17f67 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -50,15 +50,15 @@ jobs: prefix: ${{ matrix.prefix }} coverage: ${{ matrix.version == '1' && matrix.os == 'ubuntu-latest' && matrix.arch == 'x64' }} - uses: julia-actions/julia-processcoverage@latest - if: matrix.version == '1' && matrix.os == 'ubuntu-latest' && matrix.arch == 'x64' with: directories: GI/src,src - uses: codecov/codecov-action@v4 - if: matrix.version == '1' && matrix.os == 'ubuntu-latest' && matrix.arch == 'x64' with: + token: ${{ secrets.CODECOV_TOKEN }} file: lcov.info - env: - CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} + continue-on-error: true + - uses: julia-actions/julia-uploadcoveralls@v1.0 + continue-on-error: true Documentation: runs-on: ubuntu-latest From 163343423de774e19fca1d7eed0858a3fde27f43 Mon Sep 17 00:00:00 2001 From: Jared Wahlstrand Date: Sat, 21 Sep 2024 18:35:14 -0400 Subject: [PATCH 3/5] follow clue --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b9e17f67..881ba633 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -59,6 +59,8 @@ jobs: continue-on-error: true - uses: julia-actions/julia-uploadcoveralls@v1.0 continue-on-error: true + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} Documentation: runs-on: ubuntu-latest From 13f59f6e4fd3384536416046f89e1729e7dffa6c Mon Sep 17 00:00:00 2001 From: Jared Wahlstrand Date: Sat, 21 Sep 2024 18:45:01 -0400 Subject: [PATCH 4/5] ... --- .github/workflows/ci.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 881ba633..f9d4542e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,7 +48,6 @@ jobs: - uses: julia-actions/julia-runtest@latest with: prefix: ${{ matrix.prefix }} - coverage: ${{ matrix.version == '1' && matrix.os == 'ubuntu-latest' && matrix.arch == 'x64' }} - uses: julia-actions/julia-processcoverage@latest with: directories: GI/src,src @@ -57,10 +56,6 @@ jobs: token: ${{ secrets.CODECOV_TOKEN }} file: lcov.info continue-on-error: true - - uses: julia-actions/julia-uploadcoveralls@v1.0 - continue-on-error: true - env: - CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} Documentation: runs-on: ubuntu-latest From 9f8137cc62a34e1352f2dc5f5807a5b22efed93c Mon Sep 17 00:00:00 2001 From: Jared Wahlstrand Date: Sat, 21 Sep 2024 19:03:15 -0400 Subject: [PATCH 5/5] give up --- .github/workflows/ci.yml | 8 -------- README.md | 1 - 2 files changed, 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f9d4542e..e2fbc84f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,14 +48,6 @@ jobs: - uses: julia-actions/julia-runtest@latest with: prefix: ${{ matrix.prefix }} - - uses: julia-actions/julia-processcoverage@latest - with: - directories: GI/src,src - - uses: codecov/codecov-action@v4 - with: - token: ${{ secrets.CODECOV_TOKEN }} - file: lcov.info - continue-on-error: true Documentation: runs-on: ubuntu-latest diff --git a/README.md b/README.md index b00b9e5a..80bf466e 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,6 @@ # Julia interface to GTK version 4 [![CI](https://github.com/JuliaGtk/Gtk4.jl/workflows/CI/badge.svg)](https://github.com/JuliaGtk/Gtk4.jl/actions?query=workflow%3ACI) -[![codecov.io](https://codecov.io/github/JuliaGtk/Gtk4.jl/coverage.svg?branch=main)](https://app.codecov.io/gh/JuliaGtk/Gtk4.jl) [![](https://img.shields.io/badge/docs-main-blue.svg)](https://juliagtk.github.io/Gtk4.jl/dev/) [![](https://img.shields.io/badge/docs-stable-blue.svg)](https://juliahub.com/docs/Gtk4)