gomuks/.gitlab-ci.yml

96 lines
2.1 KiB
YAML
Raw Normal View History

2020-05-10 19:49:35 +02:00
stages:
- build
- package
default:
2020-05-05 19:39:14 +02:00
before_script:
- mkdir -p .cache
- export GOPATH="$CI_PROJECT_DIR/.cache"
cache:
paths:
- .cache
2020-05-10 18:59:35 +02:00
.build-linux: &build-linux
stage: build
2020-05-05 19:39:14 +02:00
script:
2020-05-08 16:29:29 +02:00
- go build -ldflags "-linkmode external -extldflags -static" -o gomuks
2019-07-25 22:53:45 +02:00
artifacts:
paths:
2020-05-08 16:29:29 +02:00
- gomuks
2020-05-10 19:04:41 +02:00
linux/amd64:
<<: *build-linux
image: dock.mau.dev/tulir/gomuks-build-docker:linux-amd64
2020-05-10 19:04:41 +02:00
linux/arm:
<<: *build-linux
image: dock.mau.dev/tulir/gomuks-build-docker:linux-arm
2020-05-10 19:04:41 +02:00
linux/arm64:
<<: *build-linux
image: dock.mau.dev/tulir/gomuks-build-docker:linux-arm64
2020-05-10 19:04:41 +02:00
windows/amd64:
image: dock.mau.dev/tulir/gomuks-build-docker:windows-amd64
stage: build
script:
- go build -ldflags "-linkmode external -extldflags -static" -o gomuks.exe
artifacts:
paths:
- gomuks.exe
2020-05-10 19:49:35 +02:00
2021-02-08 21:49:13 +01:00
macos/amd64:
2021-02-08 21:52:20 +01:00
stage: build
2021-02-08 21:49:13 +01:00
tags:
- macos
- amd64
2021-02-08 21:52:20 +01:00
before_script: []
2021-02-08 21:49:13 +01:00
script:
- go build -o gomuks
- install_name_tool -change /usr/local/opt/libolm/lib/libolm.3.dylib @rpath/libolm.3 gomuks
- install_name_tool -add_rpath @executable_path gomuks
- install_name_tool -add_rpath /usr/local/opt/libolm/lib gomuks
- cp /usr/local/opt/libolm/lib/libolm.3.dylib .
artifacts:
paths:
- gomuks
- libolm.3.dylib
macos/arm64:
2021-02-08 21:52:20 +01:00
stage: build
2021-02-08 21:49:13 +01:00
tags:
- macos
- arm64
before_script:
- export LIBRARY_PATH=/opt/homebrew/lib
- export CPATH=/opt/homebrew/include
- export PATH=/opt/homebrew/bin:$PATH
script:
- go build -o gomuks
- install_name_tool -change /opt/homebrew/opt/libolm/lib/libolm.3.dylib @rpath/libolm.3 gomuks
- install_name_tool -add_rpath @executable_path gomuks
- install_name_tool -add_rpath /opt/homebrew/opt/libolm/lib gomuks
- install_name_tool -add_rpath /usr/local/opt/libolm/lib gomuks
- cp /opt/homebrew/opt/libolm/lib/libolm.3.dylib .
artifacts:
paths:
- gomuks
- libolm.3.dylib
debian:
2020-05-10 19:49:35 +02:00
image: debian
stage: package
dependencies:
- linux/amd64
2020-05-10 20:02:12 +02:00
only:
- tags
2020-05-10 19:49:35 +02:00
script:
- mkdir -p deb/usr/bin
- cp gomuks deb/usr/bin/gomuks
- chmod -R -s deb/DEBIAN && chmod -R 0755 deb/DEBIAN
2020-05-10 20:02:12 +02:00
- dpkg-deb --build deb gomuks.deb
artifacts:
paths:
- gomuks.deb