Skip to content

Commit

Permalink
Use macos-latest instead of ubuntu-latest in GitHub workflows
Browse files Browse the repository at this point in the history
Tycho 4.x requires Maven 3.9.0 or later.

`ubuntu-latest` currently provides Maven 3.8.8, while `macos-latest`
provides Maven 3.9.5.

In addition, macOS virtual machines currently have 3 processors and 14
GB of memory, while Linux virtual machines have 2 processors and 7 GB of
memory:

https://docs.github.com/en/actions/using-jobs/choosing-the-runner-for-a-job#choosing-github-hosted-runners
  • Loading branch information
pisv committed Dec 6, 2023
1 parent d52b036 commit 7eee949
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on: [push, pull_request]
jobs:
build-latest-target:

runs-on: ubuntu-latest
runs-on: macos-latest

steps:
- uses: actions/checkout@v4
Expand All @@ -31,7 +31,7 @@ jobs:

build-base-target:

runs-on: ubuntu-latest
runs-on: macos-latest

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
build-and-release:

runs-on: ubuntu-latest
runs-on: macos-latest

steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 7eee949

Please sign in to comment.