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

CI: Test on 32-bit arm #1000

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
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
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,11 @@ jobs:
platforms:
strategy:
matrix:
arch: [ "amd64", "arm64" ]
arch: [ "amd64", "arm64", "arm" ]
os: [ "linux", "freebsd", "darwin" ]
exclude:
- arch: "arm"
os: "darwin"
name: platforms
runs-on: ubuntu-latest
steps:
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ This library has been tested or deployed on the following operating systems and
| Linux | amd64 | ✅ | ✅ | Check GitHub Actions of this project. |
| Linux | s390x | ✅ | ✅ | A daily CI runs on an s390x VM, supported by the [IBM Z and LinuxONE Community](https://www.ibm.com/community/z/open-source/). |
| Linux | arm64 | ✅ | ❌ | Deployed in a production environment of a user. |
| Linux | arm | ✅ | ❌ | A test in CI to make sure builds for 32-bits platforms work. |
| FreeBSD | amd64 | ✅ | ❌ | Sporadically tested by developers. |

Other platforms supported by Go may also work, but they have not been verified. Feel free to report your test results.
Expand Down
Loading