Skip to content

Instantly share code, notes, and snippets.

@kaustavdm
Last active May 18, 2016 11:44
Show Gist options
  • Save kaustavdm/a0354ded0eb54ca5aca84662544fd452 to your computer and use it in GitHub Desktop.
Save kaustavdm/a0354ded0eb54ca5aca84662544fd452 to your computer and use it in GitHub Desktop.
Gauge package install instructions

Debian/Ubuntu packages for Gauge.

Setting up

Add Bintrays's GPG key

$ sudo apt-key adv --keyserver hkp://pool.sks-keyservers.net --recv-keys 023EDB0B

Add repository URL to sources.list

For stable releases:

$ echo deb https://dl.bintray.com/gauge/gauge-deb stable main | sudo tee -a /etc/apt/sources.list

Else, for nightly releases:

$ echo deb https://dl.bintray.com/gauge/gauge-deb nightly main | sudo tee -a /etc/apt/sources.list

Install

$ sudo apt-get update
$ sudo apt-get install gauge

Gauge setup

To set up necessary environment variables and download basic reporting plugins, run this command as a regular user to complete installation:

$ gauge_setup

RPM packages for Gauge (for Fedora, RHEL, CentOS, and possibly OpenSuse).

Setting up

Stable builds

Run this command:

$ echo -e "[gauge-stable]\nname=gauge-stable\nbaseurl=http://dl.bintray.com/gauge/gauge-rpm/gauge-stable\ngpgcheck=0\nenabled=1" | sudo tee /etc/yum.repos.d/gauge-stable.repo

This will create /etc/yum.repos.d/gauge-stable.repo with the following content:

[gauge-stable]
name=gauge-stable
baseurl=http://dl.bintray.com/gauge/gauge-rpm/gauge-stable
gpgcheck=0
enabled=1

Nightly builds

Run this command:

$ echo -e "[gauge-nightly]\nname=gauge-nightly\nbaseurl=http://dl.bintray.com/gauge/gauge-rpm/gauge-nightly\ngpgcheck=0\nenabled=1" | sudo tee /etc/yum.repos.d/gauge-nightly.repo

This will create /etc/yum.repos.d/gauge-nightly.repo with the following content:

[gauge-nightly]
name=gauge-nightly
baseurl=http://dl.bintray.com/gauge/gauge-rpm/gauge-nightly
gpgcheck=0
enabled=1

Install

On Fedora:

$ sudo dnf install gauge

On CentOS/RHEL:

$ sudo yum install gauge

Gauge setup

To set up necessary environment variables and download basic reporting plugins, run this command as a regular user to complete installation:

$ gauge_setup
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment