From 9cbb79ae09e313af32761ddeca513990a8ac214d Mon Sep 17 00:00:00 2001 From: suve Date: Fri, 2 Aug 2024 20:36:15 +0200 Subject: [PATCH 1/2] Switch CI from macOS 11 (Big Sur) to 14 (Sonoma) This commit switches the macOS CI job from macOS 11 Big Sur - which is no longer available in GitHub Actions - to the latest macOS release provided by GHActions, that being macOS 14 Sonoma. --- .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 f789c40e..ba611c2e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,8 +7,8 @@ on: branches: [ master ] jobs: - macos-11-big-sur: - runs-on: macos-11 + macos-14-sonoma: + runs-on: macos-14 steps: - name: Install FPC run: | @@ -56,7 +56,7 @@ jobs: uses: suve/GHActions-FPC@v0.4.0 with: source: tests/testinit.pas - flags: Fl/usr/local/lib + flags: Fl/opt/homebrew/lib verbosity: ewnh - name: Test 1 - Run Init Test run: | @@ -65,7 +65,7 @@ jobs: uses: suve/GHActions-FPC@v0.4.0 with: source: tests/testversion.pas - flags: Fl/usr/local/lib + flags: Fl/opt/homebrew/lib verbosity: ewnh - name: Test 2 - Run Version Test run: | From 21e8ba4eb3e4f9ed717fbf4e304a20f9a28ab62c Mon Sep 17 00:00:00 2001 From: suve Date: Fri, 2 Aug 2024 20:38:36 +0200 Subject: [PATCH 2/2] Switch CI from Ubuntu 20.04 to 22.04 This commit switches the Ubuntu CI job from running on Ubuntu 20.04 to the newer 22.04 release. --- .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 ba611c2e..fd57e187 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -70,8 +70,8 @@ jobs: - name: Test 2 - Run Version Test run: | ./tests/testversion - ubuntu-20-04: - runs-on: ubuntu-20.04 + ubuntu-22-04: + runs-on: ubuntu-22.04 steps: - name: Install FPC run: |