mirror of
https://github.com/goreleaser/nfpm
synced 2024-11-19 03:25:08 +01:00
793979844f
* add support for build rpm packages for aarch64 Signed-off-by: Christoph Hartmann <chris@lollyrock.com> * add unit test to verify the manipulation of the arch field Signed-off-by: Christoph Hartmann <chris@lollyrock.com> * add acceptance test for arm64 builds Signed-off-by: Christoph Hartmann <chris@lollyrock.com> * use newer travis ubuntu distro Signed-off-by: Christoph Hartmann <chris@lollyrock.com> * enable binfmt in docker Signed-off-by: Christoph Hartmann <chris@lollyrock.com>
30 lines
616 B
YAML
30 lines
616 B
YAML
# acceptance does not work with current default trusty
|
|
dist: xenial
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- rpm
|
|
language: go
|
|
go: '1.12.x'
|
|
services:
|
|
- docker
|
|
before_install:
|
|
- sudo docker run --privileged linuxkit/binfmt:v0.7
|
|
install:
|
|
- make setup
|
|
before_script:
|
|
- rpmbuild --version
|
|
script:
|
|
- make ci
|
|
after_success:
|
|
- bash <(curl -s https://codecov.io/bash)
|
|
- test -n "$TRAVIS_TAG" && docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"
|
|
notifications:
|
|
email: false
|
|
deploy:
|
|
- provider: script
|
|
skip_cleanup: true
|
|
script: curl -sL http://git.io/goreleaser | bash
|
|
on:
|
|
tags: true
|