Merge pull request #67 from Roblox/arm64

Add support for arm64.
This commit is contained in:
Shishir 2021-01-29 13:16:49 -08:00 committed by GitHub
commit 9f36775fc5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 29 additions and 0 deletions

23
Makefile.arm64 Normal file
View File

@ -0,0 +1,23 @@
BINARY ?= containerd-driver
ifndef $(GOLANG)
GOLANG=$(shell which go)
export GOLANG
endif
export GOARCH=arm64
export GO111MODULE=on
export GOOS=linux
default: build
.PHONY: clean
clean:
rm -f $(BINARY)
.PHONY: build
build:
$(GOLANG) build -o $(BINARY) .
.PHONY: test
test:
./tests/run_tests.sh

View File

@ -41,6 +41,12 @@ $ cd nomad-driver-containerd
$ make build (This will build your containerd-driver binary)
```
If you want to compile for `arm64`, you can run:
```
make -f Makefile.arm64
```
## Screencast
[![asciicast](https://asciinema.org/a/348173.svg)](https://asciinema.org/a/348173)