Skip to content

Commit

Permalink
Add an ARM64 variant for Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
emmanuelguerin committed Jun 12, 2024
1 parent d211ff5 commit e8f9193
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
os: ${{steps.vars.outputs.os}}
strategy:
matrix:
arch: [amd64]
arch: [amd64,arm64]
cgo: [0]
os: [windows-latest, ubuntu-latest ]
include:
Expand Down Expand Up @@ -109,6 +109,11 @@ jobs:
with:
name: linux-amd64
path: output/linux/amd64/
- name: Download linux arm64 artifact
uses: actions/download-artifact@v3
with:
name: linux-arm64
path: output/linux/arm64/
- name: Download windows amd64 artifact
uses: actions/download-artifact@v3
with:
Expand All @@ -130,6 +135,7 @@ jobs:
mv output/darwin/arm64/cdt_darwin_arm64_${{needs.build.outputs.sha_short}} output/darwin/arm64/cdt
mv output/darwin/amd64/cdt_darwin_amd64_${{needs.build.outputs.sha_short}} output/darwin/amd64/cdt
mv output/linux/amd64/cdt_linux_amd64_${{needs.build.outputs.sha_short}} output/linux/amd64/cdt
mv output/linux/arm64/cdt_linux_arm64_${{needs.build.outputs.sha_short}} output/linux/arm64/cdt
mv output/windows/amd64/cdt_windows_amd64_${{needs.build.outputs.sha_short}} output/windows/amd64/cdt.exe
- name: Zip the package
Expand Down
2 changes: 1 addition & 1 deletion gh-pages/content/en/docs/overview/enterprise.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ The `[SELF_UPDATE_BASE_URL]` should be defined in `self_update_base_url` configu
| windows | amd64 | yes |
| windows | arm64 | no |
| linux | amd64 | yes |
| linux | arm64 | no |
| linux | arm64 | yes |
| darwin | amd64 | yes |
| darwin | arm64 | yes |

Expand Down

0 comments on commit e8f9193

Please sign in to comment.