mirror of https://github.com/rclone/rclone.git
build: update the build container to use latest go version for circleci
This commit is contained in:
parent
21a0693b79
commit
8e107b9657
|
@ -13,10 +13,10 @@ jobs:
|
||||||
- run:
|
- run:
|
||||||
name: Cross-compile rclone
|
name: Cross-compile rclone
|
||||||
command: |
|
command: |
|
||||||
docker pull billziss/xgo-cgofuse
|
docker pull rclone/xgo-cgofuse
|
||||||
go get -v github.com/karalabe/xgo
|
go get -v github.com/karalabe/xgo
|
||||||
xgo \
|
xgo \
|
||||||
--image=billziss/xgo-cgofuse \
|
--image=rclone/xgo-cgofuse \
|
||||||
--targets=darwin/386,darwin/amd64,linux/386,linux/amd64,windows/386,windows/amd64 \
|
--targets=darwin/386,darwin/amd64,linux/386,linux/amd64,windows/386,windows/amd64 \
|
||||||
-tags cmount \
|
-tags cmount \
|
||||||
.
|
.
|
||||||
|
|
|
@ -0,0 +1,5 @@
|
||||||
|
#!/bin/bash
|
||||||
|
set -e
|
||||||
|
docker build -t rclone/xgo-cgofuse https://github.com/billziss-gh/cgofuse.git
|
||||||
|
docker images
|
||||||
|
docker push rclone/xgo-cgofuse
|
Loading…
Reference in New Issue