summaryrefslogtreecommitdiff
path: root/scripts/prep-librewolf-dpkg.conf
blob: 742d145db7319db3023b60d4c503a27a1091c02b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Config file for prep-librewolf-dpkg.sh
# Configure these settings before running that script.

# Available options for DISTRO: debian
DISTRO=${DISTRO:-'debian'}
# current version of Firefox package in target distro
distro_firefox_version=${distro_firefox_version:-'119.0-1'}
# current version of Firefox, as defined by name of the orig tarball.
firefox_version=${firefox_version:-'119.0'}
# input git tag of source repo
source_version=${source_version:-'119.0-8'}
settings_commit=${settings_commit:-'master'}
CI_PROJECT_DIR=${CI_PROJECT_DIR:-$(realpath $(dirname $0)/../)}
output_dir=${CI_PROJECT_DIR}/out

ARTIFACT_PROTOCOL=https
ARTIFACT_HOSTNAME=storage.ci.librewolf.net
ARTIFACT_PATHDIR="/artifacts/${CI_PIPELINE_NUMBER}/prepared"
bgstack15