-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
70 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |