Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
313c695
build on windows-11-arm
bruno-garcia May 13, 2025
283f080
java 21 on arm64 win
bruno-garcia May 17, 2025
f1890bd
java
bruno-garcia May 17, 2025
5ec8ed9
java
bruno-garcia May 17, 2025
f366998
java with shel
bruno-garcia May 17, 2025
0834456
java with shel
bruno-garcia May 17, 2025
191004a
add arch to stuff
bruno-garcia May 17, 2025
67f13cc
matrix with arch
bruno-garcia May 17, 2025
fa50b1d
java
bruno-garcia May 17, 2025
9d8f3c6
fix condition
bruno-garcia May 17, 2025
891a865
sln filter
bruno-garcia May 17, 2025
eaa9a5d
fix java 11 outside windows
bruno-garcia May 17, 2025
d8a669f
copy pasta never ends
bruno-garcia May 17, 2025
e7d93a5
demove localdb stuff from arm
bruno-garcia May 17, 2025
98512cc
depend on sentry-native
bruno-garcia May 18, 2025
80b8353
Merge branch 'main' into bruno-garcia-patch-1
bruno-garcia May 18, 2025
90c3dd6
fix arch
bruno-garcia May 18, 2025
46cd05e
remove sql test from arm
bruno-garcia May 18, 2025
8e80e4a
use platform aware cache key for sentry-native windows
bruno-garcia May 18, 2025
468f82f
Fix Windows vs. Windows-arm64 cache key
jpnurmi May 19, 2025
1ac8d87
Merge branch 'main' into bruno-garcia-patch-1
jpnurmi May 19, 2025
dcf50fe
install missing zstd for cross-os cache
jpnurmi May 19, 2025
b10ab7c
add missing shell
jpnurmi May 19, 2025
793663b
move zstd installation into build-sentry-native
jpnurmi May 19, 2025
7c44c3a
run pwsh scripts/generate-solution-filters.ps1
jpnurmi May 19, 2025
1c0a17e
install zstd for restoring too
jpnurmi May 19, 2025
0aa8d28
setup env before cache restore
jpnurmi May 19, 2025
0359a55
simplify java setup
jpnurmi May 20, 2025
3d50cf2
remove outdated TODO comment
jpnurmi May 20, 2025
d59af89
add zstd on windows-11-arm issue links
jpnurmi May 20, 2025
077f53b
trim-analysis depends on build-sentry-native
jpnurmi May 20, 2025
3af984d
use matrix.os for cache & matrix.slnf for solution filter
jpnurmi May 20, 2025
86019e7
avoid error-prone matrix.os as cache key
jpnurmi May 21, 2025
eab2490
fix typos
jpnurmi May 21, 2025
39937eb
fix suffix
jpnurmi May 21, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
matrix:
# Pin ubuntu to ensure mono is installed
# Pin macos to get the version of Xcode that we need: https://github.com/actions/runner-images/issues/10703
os: [ubuntu-22.04, windows-latest, macos-15]
os: [ubuntu-22.04, windows-latest, windows-11-arm, macos-15]

steps:
- name: Checkout
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:
matrix:
# Pin ubuntu to ensure mono is installed
# Pin macos to get the version of Xcode that we need: https://github.com/actions/runner-images/issues/10703
os: [ubuntu-22.04, windows-latest, macos-15]
os: [ubuntu-22.04, windows-latest, windows-11-arm, macos-15]

steps:
- name: Cancel Previous Runs
Expand Down Expand Up @@ -93,6 +93,7 @@ jobs:
key: sentry-native-macOS-${{ hashFiles('scripts/build-sentry-native.ps1') }}-${{ hashFiles('.git/modules/modules/sentry-native/HEAD') }}
fail-on-cache-miss: true

# This step is x64 specific?
- name: Download sentry-native (Windows)
if: ${{ (env.CI_PUBLISHING_BUILD == 'true') || (runner.os == 'Windows') }}
uses: actions/cache/restore@v4
Expand Down Expand Up @@ -161,7 +162,7 @@ jobs:
matrix:
# Pin ubuntu to ensure mono is installed
# Pin macos to get the version of Xcode that we need: https://github.com/actions/runner-images/issues/10703
os: [ubuntu-22.04, windows-latest, macos-15]
os: [ubuntu-22.04, windows-latest, windows-11-arm, macos-15]

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