Skip to content

Commit

Permalink
update PR build to use macos-14
Browse files Browse the repository at this point in the history
There are some slight differences for some of the image
rendering tests on Arm vs Intel. Update the PR build to
verify use macos-14 M1 runners. This should be easier for
developers who are mostly on Arm now.
  • Loading branch information
brharrington committed Mar 1, 2024
1 parent d67cfa1 commit 81aff6f
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: [pull_request]

jobs:
build:
runs-on: macos-latest
runs-on: macos-14
strategy:
matrix:
java: [17, 21]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,6 @@ object Fonts {
val isAtLeastJdk15 = System.getProperty("java.specification.version").toDouble >= 15.0
val isMacOS = System.getProperty("os.name") == "Mac OS X"
val isArm = System.getProperty("os.arch") == "aarch64"
isAtLeastJdk15 && isMacOS && !isArm
isAtLeastJdk15 && isMacOS && isArm
}
}
Binary file modified atlas-eval/src/test/resources/graph/GrapherSuite/3b26df1d.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 81aff6f

Please sign in to comment.