Skip to content
This repository has been archived by the owner on Sep 13, 2023. It is now read-only.

Latest commit

 

History

History

atlas-bi-<version>

Ubuntu Build

apt-get update
apt-get install dh-make devscripts

rename atlas-bi-<version>
cd atlas-bi-<version>

debuild -us -uc

copy files to ppa repo

To run in local docker

docker run --rm -it -v $(PWD):/atlas ubuntu:latest /bin/bash

cd /atlas; \
VERSION=0.0.1-rc.1; \
apt-get remove atlas-bi -y 2>/dev/null; \
rm -r "atlas-bi-$VERSION" 2>/dev/null; \
cp -r "atlas-bi-<version>" "atlas-bi-$VERSION" \
&& cd "atlas-bi-$VERSION" \
&& find . -type f -name "*" -exec sed -i'' -e "s/<version>/$VERSION/g" {} + \
&& debuild --no-tgz-check -us -uc \
&& cd .. \
&& apt-get install ./atlas-bi_*.deb -y

To install a build

curl -s --compressed "https://atlas-bi.github.io/ppa/deb/KEY.gpg" | sudo apt-key add -
sudo curl -s --compressed -o /etc/apt/sources.list.d/atlas.list "https://atlas-bi.github.io/ppa/deb/atlas.list"
sudo apt update
sudo apt install atlas-bi