ci: bump runs-on versions Mostly to bump to macos one which will hopefully fix CI issues there. Signed-off-by: Ran Benita <ran@unusedvar.com>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
diff --git a/.github/workflows/github-release.yml b/.github/workflows/github-release.yml
index 2d6e496..16ba3ad 100644
--- a/.github/workflows/github-release.yml
+++ b/.github/workflows/github-release.yml
@@ -11,7 +11,7 @@ permissions: {}
jobs:
build:
name: Automatically create GitHub release for tag
- runs-on: ubuntu-20.04
+ runs-on: ubuntu-22.04
permissions:
contents: write
steps:
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml
index be22915..5ba828f 100644
--- a/.github/workflows/linux.yml
+++ b/.github/workflows/linux.yml
@@ -11,7 +11,7 @@ permissions: {}
jobs:
linux:
- runs-on: ubuntu-20.04
+ runs-on: ubuntu-22.04
permissions:
contents: read
strategy:
@@ -33,7 +33,8 @@ jobs:
libwayland-dev wayland-protocols bison graphviz
- name: Setup
run: |
- meson setup build
+ # -gdwarf-4 - see https://github.com/llvm/llvm-project/issues/56550.
+ CFLAGS='-gdwarf-4' meson setup build
env:
CC: ${{ matrix.compiler }}
- name: Build
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml
index 4754b93..c57a0d7 100644
--- a/.github/workflows/macos.yml
+++ b/.github/workflows/macos.yml
@@ -11,7 +11,7 @@ permissions: {}
jobs:
macos:
- runs-on: macos-10.15
+ runs-on: macos-12
permissions:
contents: read
steps:
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml
index 8573eb3..101992d 100644
--- a/.github/workflows/windows.yml
+++ b/.github/workflows/windows.yml
@@ -11,7 +11,7 @@ permissions: {}
jobs:
windows:
- runs-on: windows-2019
+ runs-on: windows-2022
permissions:
contents: read
steps:
@@ -31,12 +31,12 @@ jobs:
- name: Setup
shell: cmd
run: |
- call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x64
+ call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x64
meson setup --backend=vs -Denable-wayland=false -Denable-x11=false -Denable-docs=false -Denable-xkbregistry=false build
- name: Build
shell: cmd
run: |
- call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x64
+ call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x64
meson compile -C build
- name: Test
run: