PKGBUILD/.travis.yml
Markus Pesch a1c28a0a2e
fix: ci steps, disable arm5 and arm7 architectures
changes:
- Remove obsolete architectures and environment variables from the
  Makefile. Remove rpm-build steps. This will be exported in an own
  repository.
- Adapt the travis file. Remove obsolete architecture steps.
2020-06-01 17:57:27 +02:00

36 lines
711 B
YAML

language: go
services:
- docker
jobs:
include:
- name: build-linux-amd64
stage: build
script: make container-run/bin/linux/amd64/flucky
# - name: build-linux-arm5
# stage: build
# script: make container-run/bin/linux/arm/5/flucky
# - name: build-linux-arm7
# stage: build
# script: make container-run/bin/linux/arm/7/flucky
- name: test-linux-amd64
stage: test
script: make container-run/test/unit
after_script: bash <(curl -s https://codecov.io/bash)
- name: deploy-container-amd64
stage: deploy
script: make container-image/push/amd64
branches:
only:
- master
notifications:
email:
on_success: change
on_failure: change