From 0883013a1bf7c03d193edf0f5a57143a1dfe2552 Mon Sep 17 00:00:00 2001 From: Paul Date: Fri, 26 Jan 2018 09:01:54 +0100 Subject: [PATCH] Disable cross-compilation for now --- .gitlab-ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7231f45..e32802b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -46,14 +46,14 @@ compile: # build binaries -- list of supported plattforms is here: # https://stackoverflow.com/a/20728862 - GOOS=linux GOARCH=amd64 go build -o $CI_PROJECT_DIR/certman - - GOOS=linux GOARCH=arm GOARM=6 go build -o $CI_PROJECT_DIR/certman.arm - - GOOS=windows GOARCH=amd64 go build -o $CI_PROJECT_DIR/certman.exe + #- GOOS=linux GOARCH=arm GOARM=6 go build -o $CI_PROJECT_DIR/certman.arm + #- GOOS=windows GOARCH=amd64 go build -o $CI_PROJECT_DIR/certman.exe artifacts: expire_in: "8 hrs" paths: - certman - - certman.arm - - certman.exe + # - certman.arm + # - certman.exe minify: stage: release @@ -69,7 +69,7 @@ minify: artifacts: paths: - certman - - certman.arm - - certman.exe + #- certman.arm + #- certman.exe only: - tags