Skip to content

Commit

Permalink
Add CI configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
clefebvre committed Jan 23, 2018
1 parent ceadb95 commit a84da08
Showing 1 changed file with 70 additions and 0 deletions.
70 changes: 70 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
version: 2.0

shared: &shared

steps:

- checkout

- run:
name: Prepare environment
command: apt-get update

- run:
name: Install dependencies
command: |
wget https://github.com/linuxmint/xapps/releases/download/master.${CIRCLE_JOB}/packages.tar.gz -O xapps.tar.gz
ls *.tar.gz | xargs -i tar zxvf {}
apt install --yes --allow-downgrades ./packages/*.deb
rm -rf packages
- run:
name: Build project
command: mint-build -i

- run:
name: Prepare packages
command: |
if [ -z $CI_PULL_REQUEST ]; then
mkdir /packages
mv /root/*.deb /packages/
git log > /packages/git.log
cd /
tar zcvf packages.tar.gz packages
fi
- run:
name: Deploy packages to Github
command: |
if [ -z $CI_PULL_REQUEST ]; then
wget https://github.com/tcnksm/ghr/releases/download/v0.5.4/ghr_v0.5.4_linux_amd64.zip
apt-get install --yes unzip
unzip ghr_v0.5.4_linux_amd64.zip
TAG="master".$CIRCLE_JOB
./ghr -t $GITHUB_TOKEN -u $CIRCLE_PROJECT_USERNAME -r $CIRCLE_PROJECT_REPONAME -replace $TAG /packages.tar.gz
./ghr -t $GITHUB_TOKEN -u $CIRCLE_PROJECT_USERNAME -r $CIRCLE_PROJECT_REPONAME -recreate -b "Latest unstable packages" $TAG /packages.tar.gz
fi
jobs:
"mint18":
<<: *shared
docker:
- image: linuxmintd/mint18-amd64

"mint19":
<<: *shared
docker:
- image: linuxmintd/mint19-amd64

"lmde3":
<<: *shared
docker:
- image: linuxmintd/lmde3-amd64

workflows:
version: 2
build:
jobs:
- "mint18"
- "mint19"
- "lmde3"

0 comments on commit a84da08

Please sign in to comment.