Skip to content

Commit

Permalink
Add a convey.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
grimmy committed Dec 22, 2018
1 parent 5d16114 commit 4675665
Showing 1 changed file with 58 additions and 0 deletions.
58 changes: 58 additions & 0 deletions convey.yml
@@ -0,0 +1,58 @@
---
tasks:
clean:
type: convey/clean
files:
- libicyque-*.so

import:
type: docker/import
files:
- .:.

export:
type: docker/export
files:
- libicyque-*.so

purple2:
type: docker/run
image: pidgin/pidgin2-dev:${TAG}
workdir: /workspace
script:
- set -ex
- make clean
- rm -f libicyque-${TAG}.so
- make libicyque.so
- mv libicyque.so libicyque-${TAG}.so

purple2-debian-stretch-amd64:
type: convey/extend
task: purple2
environment:
- TAG=debian-stretch-amd64
purple2-fedora-28-amd64:
type: convey/extend
task: purple2
environment:
- TAG=fedora-28-amd64

plans:
default:
stages:
- name: setup
tasks:
- import
- name: builds
tasks:
- purple2-debian-stretch-amd64
- purple2-fedora-28-amd64
- name: export
tasks:
- export
clean:
stages:
- name: clean
tasks:
- clean

0 comments on commit 4675665

Please sign in to comment.