From 6ed59992f688d2a3f9d3d1948338d92719aa05ba Mon Sep 17 00:00:00 2001 From: Mitsutoshi Aoe Date: Mon, 9 May 2022 22:19:15 +0900 Subject: [PATCH 1/2] CI: Replace GHC 8.10.3 with 8.10.7 --- .github/workflows/ci.yml | 24 ++++++++++++------------ threadscope.cabal | 2 +- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 640227e..4c68106 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,12 +9,12 @@ jobs: strategy: matrix: ghc: - - '9.2.2' - - '9.0.2' - - '8.10.3' - - '8.8.4' + - "9.2.2" + - "9.0.2" + - "8.10.7" + - "8.8.4" cabal: - - '3.6' + - "3.6" os: - ubuntu-latest - macOS-latest @@ -87,7 +87,7 @@ jobs: uses: softprops/action-gh-release@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - if: ${{ startsWith(github.ref, 'refs/tags/') && matrix.ghc == '8.10.3' }} + if: ${{ startsWith(github.ref, 'refs/tags/') && matrix.ghc == '8.10.7' }} with: files: threadscope.${{ matrix.os }}.ghc-${{ matrix.ghc }}.gz draft: false @@ -98,12 +98,12 @@ jobs: strategy: matrix: ghc: - - '9.2.2' - - '9.0.2' - - '8.10.3' - - '8.8.4' + - "9.2.2" + - "9.0.2" + - "8.10.7" + - "8.8.4" cabal: - - '3.6' + - "3.6" os: - windows-latest fail-fast: false @@ -143,7 +143,7 @@ jobs: uses: softprops/action-gh-release@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - if: ${{ startsWith(github.ref, 'refs/tags/') && matrix.ghc == '8.10.3' }} + if: ${{ startsWith(github.ref, 'refs/tags/') && matrix.ghc == '8.10.7' }} with: files: threadscope.${{ matrix.os }}.ghc-${{ matrix.ghc }}.zip draft: false diff --git a/threadscope.cabal b/threadscope.cabal index 60160ae..c23c597 100644 --- a/threadscope.cabal +++ b/threadscope.cabal @@ -37,7 +37,7 @@ Extra-source-files: include/windows_cconv.h README.md CHANGELOG.md Tested-with: GHC == 8.8.4 - GHC == 8.10.3 + GHC == 8.10.7 GHC == 9.0.2 GHC == 9.2.2 From 7d6089429b7fc77ff51eaf579206c8912967b792 Mon Sep 17 00:00:00 2001 From: Mitsutoshi Aoe Date: Mon, 9 May 2022 23:03:44 +0900 Subject: [PATCH 2/2] CI: Use 9.2.2 for release buidls --- .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 4c68106..81a2d65 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -87,7 +87,7 @@ jobs: uses: softprops/action-gh-release@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - if: ${{ startsWith(github.ref, 'refs/tags/') && matrix.ghc == '8.10.7' }} + if: ${{ startsWith(github.ref, 'refs/tags/') && matrix.ghc == '9.2.2' }} with: files: threadscope.${{ matrix.os }}.ghc-${{ matrix.ghc }}.gz draft: false @@ -143,7 +143,7 @@ jobs: uses: softprops/action-gh-release@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - if: ${{ startsWith(github.ref, 'refs/tags/') && matrix.ghc == '8.10.7' }} + if: ${{ startsWith(github.ref, 'refs/tags/') && matrix.ghc == '9.2.2' }} with: files: threadscope.${{ matrix.os }}.ghc-${{ matrix.ghc }}.zip draft: false