-
Notifications
You must be signed in to change notification settings - Fork 278
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update CI runners to latest versions
Update Ubuntu to 22.04 and macOS to 13. Update deps accordingly.
- Loading branch information
Showing
1 changed file
with
6 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,12 +9,13 @@ concurrency: | |
jobs: | ||
build-linux: | ||
name: Build on Linux | ||
runs-on: ubuntu-20.04 | ||
runs-on: ubuntu-latest | ||
env: | ||
MAKEFLAGS: -j2 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Checkout submodules | ||
# submodules are not used by the build, but needed for `make dist`: | ||
run: git submodule update --init deps/json deps/pugixml | ||
- name: Install dependencies | ||
run: | | ||
|
@@ -36,7 +37,9 @@ jobs: | |
libgtkspell3-3-dev \ | ||
libcld2-dev \ | ||
libcpprest-dev \ | ||
libsecret-1-dev | ||
libsecret-1-dev \ | ||
libpugixml-dev \ | ||
nlohmann-json3-dev | ||
- name: Install ccache | ||
uses: hendrikmuhs/[email protected] | ||
with: | ||
|
@@ -57,7 +60,7 @@ jobs: | |
|
||
build-macos: | ||
name: Build on macOS | ||
runs-on: macos-11 | ||
runs-on: macos-13 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
|