From 1c36031073a7152e3879a956eff8bd33964087d2 Mon Sep 17 00:00:00 2001 From: Myk Taylor Date: Mon, 6 Mar 2023 15:18:06 -0800 Subject: [PATCH 1/4] update all build envs to ubuntu-22.04 --- .github/workflows/build.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 595bde8ed..024a8fe6b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,15 +10,14 @@ jobs: fail-fast: false matrix: os: - - ubuntu-18.04 + - ubuntu-22.04 gcc: - 4.8 - 7 plugins: - default include: - - os: ubuntu-22.04 - gcc: 12 + - gcc: 12 plugins: all steps: - name: Set up Python 3 @@ -159,7 +158,7 @@ jobs: path: build/win64-cross/output/* docs: - runs-on: ubuntu-18.04 + runs-on: ubuntu-22.04 steps: - name: Set up Python 3 uses: actions/setup-python@v2 @@ -182,7 +181,7 @@ jobs: path: docs/html lint: - runs-on: ubuntu-18.04 + runs-on: ubuntu-22.04 steps: - name: Set up Python 3 uses: actions/setup-python@v2 From 3569f7e6877b9f2990a23c3da68ce561d3c38795 Mon Sep 17 00:00:00 2001 From: Myk Taylor Date: Mon, 6 Mar 2023 15:22:15 -0800 Subject: [PATCH 2/4] update ruby action --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 024a8fe6b..f3c133bab 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -188,7 +188,7 @@ jobs: with: python-version: 3 - name: Set up Ruby 2.7 - uses: actions/setup-ruby@v1 + uses: ruby/setup-ruby@v1 with: ruby-version: 2.7 - name: Install Lua From 363a3d484eac74b34c87b9db45ab0cc901876994 Mon Sep 17 00:00:00 2001 From: Myk Taylor Date: Mon, 6 Mar 2023 15:23:45 -0800 Subject: [PATCH 3/4] fix matrix build? --- .github/workflows/build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f3c133bab..49333f110 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,7 +17,8 @@ jobs: plugins: - default include: - - gcc: 12 + - os: ubuntu-22.04 + gcc: 12 plugins: all steps: - name: Set up Python 3 From 1bf79afd54fa815cd968231e477a2dc638b22cbe Mon Sep 17 00:00:00 2001 From: Myk Taylor Date: Mon, 6 Mar 2023 15:29:11 -0800 Subject: [PATCH 4/4] ditch gcc 4.8 and 7, replace with 10 --- .github/workflows/build.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 49333f110..abee9a86a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,8 +12,7 @@ jobs: os: - ubuntu-22.04 gcc: - - 4.8 - - 7 + - 10 plugins: - default include: