Codebase list i3-gaps / b04334f8-c5d2-4b68-bab6-8fb721c2dcd4/main travis / skip-pkg.sh
b04334f8-c5d2-4b68-bab6-8fb721c2dcd4/main

Tree @b04334f8-c5d2-4b68-bab6-8fb721c2dcd4/main (Download .tar.gz)

skip-pkg.sh @b04334f8-c5d2-4b68-bab6-8fb721c2dcd4/mainraw · history · blame

#!/bin/sh
# Returns true if Debian/Ubuntu packages should be skipped because this CI run
# was triggered by a pull request.

# Verify BINTRAY_USER is present (only set on github.com/i3/i3),
# otherwise the CI run was triggered by a pull request.
# Verify CC=gcc so that we only build packages once for each commit,
# not twice (with gcc and clang).
if [ ! -z "$BINTRAY_USER" ] && [ "$CC" = "gcc" ]
then
	exit 1
fi

exit 0