Skip to content

Commit

Permalink
CI: test ./configure and make all
Browse files Browse the repository at this point in the history
Issue: tiliado/nuvolaplayer#420

Signed-off-by: Jiří Janoušek <[email protected]>
  • Loading branch information
jiri-janousek committed Jun 7, 2018
1 parent ba22a40 commit 7c2d744
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,16 @@ jobs:
--mount src=`pwd`,target=/workdir,type=bind \
--privileged --name fedora fedora:28 \
bash -c '
set -eu;
export LANG=C.UTF-8
dnf -y update && dnf install -y flatpak && dnf clean all;
flatpak remote-add flathub https://dl.flathub.org/repo/flathub.flatpakrepo;
flatpak remote-add nuvola https://dl.tiliado.eu/flatpak/nuvola.flatpakrepo;
flatpak install -y flathub org.gnome.Sdk//3.28 > /dev/null;
flatpak install -y nuvola eu.tiliado.NuvolaAdk//stable > /dev/null;
echo Done installation;
cd /workdir;
flatpak run --filesystem=/workdir --command=nuvolasdk eu.tiliado.NuvolaAdk check-project
flatpak run --filesystem=/workdir --command=nuvolasdk eu.tiliado.NuvolaAdk check-project;
flatpak run -d --filesystem=/workdir --command=sh eu.tiliado.NuvolaAdk -c "./configure --genuine";
flatpak run -d --filesystem=/workdir --command=sh eu.tiliado.NuvolaAdk -c "LANG=C.UTF-8 LC_ALL=C.UTF-8 make all"
'

0 comments on commit 7c2d744

Please sign in to comment.