Build test modules for aarch64 (#83195)

pull/83203/head
Matt Clay 2 weeks ago committed by GitHub
parent f4bbd75a3c
commit 3461f1d757
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -6,10 +6,13 @@ all:
# https://ci-files.testing.ansible.com/test/integration/roles/test_binary_modules/
cd library; \
GOOS=linux GOARCH=amd64 go build -o helloworld_linux_x86_64 helloworld.go; \
GOOS=linux GOARCH=arm64 go build -o helloworld_linux_aarch64 helloworld.go; \
GOOS=linux GOARCH=ppc64le go build -o helloworld_linux_ppc64le helloworld.go; \
GOOS=windows GOARCH=amd64 go build -o helloworld_win32nt_64-bit.exe helloworld.go; \
GOOS=darwin GOARCH=amd64 go build -o helloworld_darwin_x86_64 helloworld.go; \
GOOS=freebsd GOARCH=amd64 go build -o helloworld_freebsd_amd64 helloworld.go
GOOS=freebsd GOARCH=amd64 go build -o helloworld_freebsd_amd64 helloworld.go; \
GOOS=freebsd GOARCH=arm64 go build -o helloworld_freebsd_arm64 helloworld.go; \
echo done
clean:
rm -f library/helloworld_*

Loading…
Cancel
Save