Skip to content

Commit bc98d18

Browse files
committed
Fix CI
1 parent d7c6dcd commit bc98d18

1 file changed

Lines changed: 16 additions & 1 deletion

File tree

.circleci/config.yml

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)