File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -13,14 +13,29 @@ shared: &shared
1313 - run :
1414 name : Install dependencies
1515 command : |
16+ wget https://github.com/linuxmint/xapps/releases/download/master.${CIRCLE_JOB}/packages.tar.gz -O xapps.tar.gz
17+ wget https://github.com/linuxmint/cinnamon-desktop/releases/download/master.${CIRCLE_JOB}/packages.tar.gz -O cinnamon-desktop.tar.gz
1618 wget https://github.com/linuxmint/nemo/releases/download/master.${CIRCLE_JOB}/packages.tar.gz -O nemo.tar.gz
1719 ls *.tar.gz | xargs -i tar zxvf {}
1820 apt install --yes --allow-downgrades ./packages/*.deb
1921 rm -rf packages
2022
2123 - run :
2224 name : Build project
23- command : ./buildall
25+ command : |
26+ for i in `find ./ -maxdepth 1 -mindepth 1 -type d`; do
27+ if [ $i = "./.git" ]; then
28+ continue
29+ fi
30+ cd $i
31+ echo ....
32+ echo ....
33+ echo ........................................... BUILDING: $i
34+ echo ....
35+ echo ....
36+ mint-build -i
37+ cd ..
38+ done
2439
2540 - run :
2641 name : Prepare packages
You can’t perform that action at this time.
0 commit comments