This repository has been archived by the owner on Dec 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 323
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
208 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,204 @@ | ||
#!/bin/sh | ||
|
||
ATOM_CHANNEL="${ATOM_CHANNEL:=stable}" | ||
|
||
echo "Downloading latest Atom release on the ${ATOM_CHANNEL} channel..." | ||
if [ "${TRAVIS_OS_NAME}" = "osx" ]; then | ||
curl -s -L "https://atom.io/download/mac?channel=${ATOM_CHANNEL}" \ | ||
-H 'Accept: application/octet-stream' \ | ||
-o "atom.zip" | ||
mkdir atom | ||
unzip -q atom.zip -d atom | ||
if [ "${ATOM_CHANNEL}" = "stable" ]; then | ||
export ATOM_APP_NAME="Atom.app" | ||
export ATOM_SCRIPT_NAME="atom.sh" | ||
export ATOM_SCRIPT_PATH="./atom/${ATOM_APP_NAME}/Contents/Resources/app/atom.sh" | ||
else | ||
export ATOM_APP_NAME="Atom ${ATOM_CHANNEL}.app" | ||
export ATOM_SCRIPT_NAME="atom-${ATOM_CHANNEL}" | ||
export ATOM_SCRIPT_PATH="./atom-${ATOM_CHANNEL}" | ||
ln -s "./atom/${ATOM_APP_NAME}/Contents/Resources/app/atom.sh" "${ATOM_SCRIPT_PATH}" | ||
fi | ||
export ATOM_PATH="./atom" | ||
export APM_SCRIPT_PATH="./atom/${ATOM_APP_NAME}/Contents/Resources/app/apm/node_modules/.bin/apm" | ||
export NPM_SCRIPT_PATH="./atom/${ATOM_APP_NAME}/Contents/Resources/app/apm/node_modules/.bin/npm" | ||
export PATH="${PATH}:${TRAVIS_BUILD_DIR}/atom/${ATOM_APP_NAME}/Contents/Resources/app/apm/node_modules/.bin" | ||
elif [ "${TRAVIS_OS_NAME}" = "linux" ]; then | ||
curl -s -L "https://atom.io/download/deb?channel=${ATOM_CHANNEL}" \ | ||
-H 'Accept: application/octet-stream' \ | ||
-o "atom-amd64.deb" | ||
/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1280x1024x16 | ||
export DISPLAY=":99" | ||
dpkg-deb -x atom-amd64.deb "${HOME}/atom" | ||
if [ "${ATOM_CHANNEL}" = "stable" ]; then | ||
export ATOM_SCRIPT_NAME="atom" | ||
export APM_SCRIPT_NAME="apm" | ||
else | ||
export ATOM_SCRIPT_NAME="atom-${ATOM_CHANNEL}" | ||
export APM_SCRIPT_NAME="apm-${ATOM_CHANNEL}" | ||
fi | ||
export ATOM_SCRIPT_PATH="${HOME}/atom/usr/bin/${ATOM_SCRIPT_NAME}" | ||
export APM_SCRIPT_PATH="${HOME}/atom/usr/bin/${APM_SCRIPT_NAME}" | ||
export NPM_SCRIPT_PATH="${HOME}/atom/usr/share/${ATOM_SCRIPT_NAME}/resources/app/apm/node_modules/.bin/npm" | ||
export PATH="${PATH}:${HOME}/atom/usr/bin" | ||
elif [ "${CIRCLECI}" = "true" ]; then | ||
case "${CIRCLE_BUILD_IMAGE}" in | ||
osx) | ||
curl -s -L "https://atom.io/download/mac?channel=${ATOM_CHANNEL}" \ | ||
-H 'Accept: application/octet-stream' \ | ||
-o "atom.zip" | ||
mkdir -p /tmp/atom | ||
unzip -q atom.zip -d /tmp/atom | ||
if [ "${ATOM_CHANNEL}" = "stable" ]; then | ||
export ATOM_APP_NAME="Atom.app" | ||
export ATOM_SCRIPT_NAME="atom.sh" | ||
export ATOM_SCRIPT_PATH="/tmp/atom/${ATOM_APP_NAME}/Contents/Resources/app/atom.sh" | ||
else | ||
export ATOM_APP_NAME="Atom ${ATOM_CHANNEL}.app" | ||
export ATOM_SCRIPT_NAME="atom-${ATOM_CHANNEL}" | ||
export ATOM_SCRIPT_PATH="/tmp/atom-${ATOM_CHANNEL}" | ||
ln -s "/tmp/atom/${ATOM_APP_NAME}/Contents/Resources/app/atom.sh" "${ATOM_SCRIPT_PATH}" | ||
fi | ||
export ATOM_PATH="/tmp/atom" | ||
export APM_SCRIPT_PATH="/tmp/atom/${ATOM_APP_NAME}/Contents/Resources/app/apm/node_modules/.bin/apm" | ||
export NPM_SCRIPT_PATH="/tmp/atom/${ATOM_APP_NAME}/Contents/Resources/app/apm/node_modules/.bin/npm" | ||
export PATH="${PATH}:${TRAVIS_BUILD_DIR}/atom/${ATOM_APP_NAME}/Contents/Resources/app/apm/node_modules/.bin" | ||
|
||
# Clear screen saver | ||
osascript -e 'tell application "System Events" to keystroke "x"' | ||
;; | ||
*) | ||
# Assume the build is on a Debian based image (Circle CI provided Linux images) | ||
curl -s -L "https://atom.io/download/deb?channel=${ATOM_CHANNEL}" \ | ||
-H 'Accept: application/octet-stream' \ | ||
-o "atom-amd64.deb" | ||
sudo dpkg --install atom-amd64.deb || true | ||
sudo apt-get update | ||
sudo apt-get --fix-broken --assume-yes --quiet install | ||
if [ "${ATOM_CHANNEL}" = "stable" ] || [ "${ATOM_CHANNEL}" = "dev" ]; then | ||
export ATOM_SCRIPT_PATH="atom" | ||
export APM_SCRIPT_PATH="apm" | ||
else | ||
export ATOM_SCRIPT_PATH="atom-${ATOM_CHANNEL}" | ||
export APM_SCRIPT_PATH="apm-${ATOM_CHANNEL}" | ||
fi | ||
export NPM_SCRIPT_PATH="/usr/share/atom/resources/app/apm/node_modules/.bin/npm" | ||
;; | ||
esac | ||
else | ||
echo "Unknown CI environment, exiting!" | ||
exit 1 | ||
fi | ||
|
||
echo "Using Atom version:" | ||
"${ATOM_SCRIPT_PATH}" -v | ||
echo "Using APM version:" | ||
"${APM_SCRIPT_PATH}" -v | ||
|
||
echo "Downloading package dependencies..." | ||
|
||
if [ "${ATOM_LINT_WITH_BUNDLED_NODE:=true}" = "true" ]; then | ||
if [ -f "package-lock.json" ]; then | ||
"${APM_SCRIPT_PATH}" ci | ||
else | ||
echo "Warning: package-lock.json not found; running apm install instead of apm ci" | ||
"${APM_SCRIPT_PATH}" install | ||
"${APM_SCRIPT_PATH}" clean | ||
fi | ||
|
||
# Override the PATH to put the Node bundled with APM first | ||
if [ "${TRAVIS_OS_NAME}" = "osx" ]; then | ||
export PATH="./atom/${ATOM_APP_NAME}/Contents/Resources/app/apm/bin:${PATH}" | ||
elif [ "${CIRCLECI}" = "true" ] && [ "${CIRCLE_BUILD_IMAGE}" = "osx" ]; then | ||
export PATH="/tmp/atom/${ATOM_APP_NAME}/Contents/Resources/app/apm/bin:${PATH}" | ||
elif [ "${CIRCLECI}" = "true" ]; then | ||
# Since CircleCI/Linux is a fully installed environment, we use the system path to apm | ||
export PATH="/usr/share/atom/resources/app/apm/bin:${PATH}" | ||
else | ||
export PATH="${HOME}/atom/usr/share/${ATOM_SCRIPT_NAME}/resources/app/apm/bin:${PATH}" | ||
fi | ||
else | ||
export NPM_SCRIPT_PATH="npm" | ||
if [ -f "package-lock.json" ]; then | ||
"${APM_SCRIPT_PATH}" ci --production | ||
else | ||
echo "Warning: package-lock.json not found; running apm install instead of apm ci" | ||
"${APM_SCRIPT_PATH}" install --production | ||
"${APM_SCRIPT_PATH}" clean | ||
fi | ||
|
||
# Use the system NPM to install the devDependencies | ||
echo "Using Node version:" | ||
node --version | ||
echo "Using NPM version:" | ||
npm --version | ||
echo "Installing remaining dependencies..." | ||
npm install | ||
fi | ||
|
||
if [ -n "${APM_TEST_PACKAGES}" ]; then | ||
echo "Installing atom package dependencies..." | ||
for pack in ${APM_TEST_PACKAGES}; do | ||
"${APM_SCRIPT_PATH}" install "${pack}" | ||
done | ||
fi | ||
|
||
has_linter() { | ||
${NPM_SCRIPT_PATH} ls --parseable --dev --depth=0 "$1" 2> /dev/null | grep -q "$1$" | ||
} | ||
|
||
if has_linter "coffeelint"; then | ||
if [ -d ./lib ]; then | ||
echo "Linting package using coffeelint..." | ||
./node_modules/.bin/coffeelint lib | ||
rc=$?; if [ $rc -ne 0 ]; then exit $rc; fi | ||
fi | ||
if [ -d ./spec ]; then | ||
echo "Linting package specs using coffeelint..." | ||
./node_modules/.bin/coffeelint spec | ||
rc=$?; if [ $rc -ne 0 ]; then exit $rc; fi | ||
fi | ||
fi | ||
|
||
if has_linter "eslint"; then | ||
if [ -d ./lib ]; then | ||
echo "Linting package using eslint..." | ||
./node_modules/.bin/eslint lib | ||
rc=$?; if [ $rc -ne 0 ]; then exit $rc; fi | ||
fi | ||
if [ -d ./spec ]; then | ||
echo "Linting package specs using eslint..." | ||
./node_modules/.bin/eslint spec | ||
rc=$?; if [ $rc -ne 0 ]; then exit $rc; fi | ||
fi | ||
fi | ||
|
||
if has_linter "standard"; then | ||
if [ -d ./lib ]; then | ||
echo "Linting package using standard..." | ||
./node_modules/.bin/standard "lib/**/*.js" | ||
rc=$?; if [ $rc -ne 0 ]; then exit $rc; fi | ||
fi | ||
if [ -d ./spec ]; then | ||
echo "Linting package specs using standard..." | ||
./node_modules/.bin/standard "spec/**/*.js" | ||
rc=$?; if [ $rc -ne 0 ]; then exit $rc; fi | ||
fi | ||
if [ -d ./test ]; then | ||
echo "Linting package tests using standard..." | ||
./node_modules/.bin/standard "test/**/*.js" | ||
rc=$?; if [ $rc -ne 0 ]; then exit $rc; fi | ||
fi | ||
fi | ||
|
||
if [ -d ./spec ]; then | ||
echo "Running specs..." | ||
"${ATOM_SCRIPT_PATH}" --test spec --disable-gpu | ||
elif [ -d ./test ]; then | ||
echo "Running specs..." | ||
"${ATOM_SCRIPT_PATH}" --test test --disable-gpu | ||
else | ||
echo "Missing spec folder! Please consider adding a test suite in './spec' or in './test'" | ||
exit 0 | ||
fi | ||
exit |