xed/.circleci/config.yml

65 lines
1.9 KiB
YAML
Raw Normal View History

2018-01-23 04:37:51 -06:00
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:
2020-06-24 06:44:49 -05:00
"mint20":
2018-01-23 04:37:51 -06:00
<<: *shared
docker:
2020-06-24 06:44:49 -05:00
- image: linuxmintd/mint20-amd64
2018-01-23 04:37:51 -06:00
2020-06-24 06:44:49 -05:00
"lmde4":
2018-01-23 04:37:51 -06:00
<<: *shared
docker:
2020-06-24 06:44:49 -05:00
- image: linuxmintd/lmde4-amd64
2018-01-23 04:37:51 -06:00
workflows:
version: 2
build:
jobs:
2020-06-24 06:44:49 -05:00
- "mint20"
- "lmde4"