Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[chore] use macos-14 for arm testing #10540

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
9 changes: 4 additions & 5 deletions .github/workflows/build-and-test-arm.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
name: build-and-test-arm
on:
push:
branches: [ main ]
branches: [main]
tags:
- 'v[0-9]+.[0-9]+.[0-9]+*'
- "v[0-9]+.[0-9]+.[0-9]+*"
merge_group:
pull_request:
env:
TEST_RESULTS: testbed/tests/results/junit/results.xml
# Make sure to exit early if cache segment download times out after 2 minutes.
# We limit cache download as a whole to 5 minutes.
SEGMENT_DOWNLOAD_TIMEOUT_MINS: 2
GOPROXY: https://goproxy1.cncf.selfactuated.dev,direct

permissions:
contents: read
Expand All @@ -24,7 +23,7 @@ concurrency:
jobs:
arm-unittest-matrix:
if: ${{ github.actor != 'dependabot[bot]' && (contains(github.event.pull_request.labels.*.name, 'Run ARM') || github.event_name == 'push' || github.event_name == 'merge_group') }}
runs-on: actuated-arm64-4cpu-4gb
runs-on: macos-14
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
Expand All @@ -50,7 +49,7 @@ jobs:
run: make -j4 gotest
arm-unittest:
if: ${{ github.actor != 'dependabot[bot]' && (contains(github.event.pull_request.labels.*.name, 'Run ARM') || github.event_name == 'push' || github.event_name == 'merge_group') }}
runs-on: actuated-arm64-4cpu-4gb
codeboten marked this conversation as resolved.
Show resolved Hide resolved
runs-on: macos-14
needs: [arm-unittest-matrix]
steps:
- name: Print result
Expand Down
6 changes: 3 additions & 3 deletions docs/platform-support.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ Tier 2 platforms are _guaranteed to work with specified limitations_. Precompile
Tier 2 platforms are currently:
| Platform | Owner(s) |
|---------------|-------------------------------------------------------------------------------------------------------------|
| darwin/arm64 | [@MovieStoreGuy](https://github.com/MovieStoreGuy) |
| windows/amd64 | [OpenTelemetry Collector approvers](https://github.com/open-telemetry/opentelemetry-collector#contributing) |
| linux/arm64 | [@atoulme](https://github.com/atoulme) |


### Tier 3 - Community Support
Expand All @@ -61,9 +61,9 @@ Tier 3 platforms are currently:
| Platform | Owner(s) |
|---------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------|
| darwin/amd64 | [@h0cheung](https://github.com/h0cheung) |
| darwin/arm64 | [@MovieStoreGuy](https://github.com/MovieStoreGuy) |
| linux/386 | [@andrzej-stencel](https://github.com/andrzej-stencel) |
| linux/386 | [@andrzej-stencel](https://github.com/andrzej-stencel) |
| linux/arm | [@Wal8800](https://github.com/Wal8800), [@atoulme](https://github.com/atoulme) |
| linux/arm64 | [@atoulme](https://github.com/atoulme) |
| linux/ppc64le | [@IBM-Currency-Helper](https://github.com/IBM-Currency-Helper), [@adilhusain-s](https://github.com/adilhusain-s), [@seth-priya](https://github.com/seth-priya) |
| linux/s390x | [@bwalk-at-ibm](https://github.com/bwalk-at-ibm), [@rrschulze](https://github.com/rrschulze) |
| windows/386 | [@pjanotti](https://github.com/pjanotti) |
Expand Down
Loading