Skip to content

Commit b59c1a0

Browse files
authored
Merge pull request #134 from criteo/linux_arm64
Add an ARM64 variant for Linux
2 parents d211ff5 + e8f9193 commit b59c1a0

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.github/workflows/go.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
os: ${{steps.vars.outputs.os}}
2020
strategy:
2121
matrix:
22-
arch: [amd64]
22+
arch: [amd64,arm64]
2323
cgo: [0]
2424
os: [windows-latest, ubuntu-latest ]
2525
include:
@@ -109,6 +109,11 @@ jobs:
109109
with:
110110
name: linux-amd64
111111
path: output/linux/amd64/
112+
- name: Download linux arm64 artifact
113+
uses: actions/download-artifact@v3
114+
with:
115+
name: linux-arm64
116+
path: output/linux/arm64/
112117
- name: Download windows amd64 artifact
113118
uses: actions/download-artifact@v3
114119
with:
@@ -130,6 +135,7 @@ jobs:
130135
mv output/darwin/arm64/cdt_darwin_arm64_${{needs.build.outputs.sha_short}} output/darwin/arm64/cdt
131136
mv output/darwin/amd64/cdt_darwin_amd64_${{needs.build.outputs.sha_short}} output/darwin/amd64/cdt
132137
mv output/linux/amd64/cdt_linux_amd64_${{needs.build.outputs.sha_short}} output/linux/amd64/cdt
138+
mv output/linux/arm64/cdt_linux_arm64_${{needs.build.outputs.sha_short}} output/linux/arm64/cdt
133139
mv output/windows/amd64/cdt_windows_amd64_${{needs.build.outputs.sha_short}} output/windows/amd64/cdt.exe
134140
135141
- name: Zip the package

gh-pages/content/en/docs/overview/enterprise.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ The `[SELF_UPDATE_BASE_URL]` should be defined in `self_update_base_url` configu
159159
| windows | amd64 | yes |
160160
| windows | arm64 | no |
161161
| linux | amd64 | yes |
162-
| linux | arm64 | no |
162+
| linux | arm64 | yes |
163163
| darwin | amd64 | yes |
164164
| darwin | arm64 | yes |
165165

0 commit comments

Comments
 (0)