-
-
Notifications
You must be signed in to change notification settings - Fork 38
Testing for ARM architecture #117
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
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -7,9 +7,12 @@ jobs: | |
| matrix: | ||
| os: | ||
| - ubuntu-22.04 | ||
| - ubuntu-22.04-arm | ||
| - ubuntu-24.04 | ||
| - ubuntu-24.04-arm | ||
|
Comment on lines
+11
to
+12
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Similarly, for consistency, let's hold off on adding Ubuntu 24 in this PR, we can add it everywhere as part of testing and rolling out pelias/docker-baseimage#32. It's much much easier to do Node.js and Ubuntu version upgrades if our github actions files are consistent. Updating them all en masse can be easily done with scripting if they're identical, but then every difference creates extra work. |
||
| node-version: [ 20.x, 22.x, 24.x ] | ||
| go-version: | ||
| - 1.16.x | ||
| - 1.16.x | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - name: 'Install node.js ${{ matrix.node-version }}' | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice, should we test on ARM everywhere? It's always nice to keep things consistent and who knows where other ARM bugs could be lurking.