Skip to content

Commit

Permalink
Release 0.14.0-rc.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ngld committed May 3, 2019
2 parents 57bb3f1 + d76409a commit 4f678f7
Show file tree
Hide file tree
Showing 35 changed files with 3,490 additions and 1,697 deletions.
39 changes: 39 additions & 0 deletions .drone.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
kind: pipeline
name: ubuntu

steps:
- name: build
image: ngld/knossos-builders:ubuntu
secrets: [ubuntu_gpg_key, ubuntu_key]
environment:
TRAVIS: n
RELEASE: n
UBUNTU_GPG_KEY:
from_secret: ubuntu_gpg_key
UBUNTU_KEY:
from_secret: ubuntu_key
commands:
- export VERSION="$(python3 setup.py get_version)"
- if [ "$DRONE_BUILD_EVENT" = "tag" ]; then export RELEASE=y; fi
- bash releng/ubuntu/auto-build.sh

---

kind: pipeline
name: arch

steps:
- name: build
image: ngld/knossos-builders:arch
secrets: [aur_key]
environment:
TRAVIS: n
RELEASE: n
AUR_USER: ngld
AUR_EMAIL: [email protected]
AUR_KEY:
from_secret: aur_key
commands:
- export VERSION="$(python3 setup.py get_version)"
- if [ "$DRONE_BUILD_EVENT" = "tag" ]; then export RELEASE=y; fi
- bash releng/arch/auto-build.sh
10 changes: 0 additions & 10 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,14 @@ branches:
- /^v\d+\.\d+(\.\d+)?(-\S*)?$/

sudo: required
services:
- docker

matrix:
include:
- os: linux
- os: osx

env:
- secure: "fMo6M/KJV0QvkTo9rvksH3gDirKiDQlkOj5bwP0VBTdQPt0l/4Top9n9ZZ4ZZqtUBo6fACsbCaBV7WYSpvE3q0iPBRV3a07vyVnHy5O5+p8NZI+FJWHUhAEZKQHTVQztBLeDzlgoP4JNHPtVrwSp+EQO7Ci7bpmKpFR2uZi+Gcg="

addons:
apt:
packages:
- docker-ce

before_install:
- cd releng/config
- openssl aes-256-cbc -K $encrypted_7dc0ff3d6916_key -iv $encrypted_7dc0ff3d6916_iv -in ci.tar.enc -out ci.tar -d
Expand All @@ -31,8 +23,6 @@ install:

script:
- bash ./releng/ci/travis.sh macos
#- bash ./releng/ci/travis.sh ubuntu
- bash ./releng/ci/travis.sh arch

after_success:
- bash ./releng/ci/travis_upload.sh
115 changes: 83 additions & 32 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 4f678f7

Please sign in to comment.