File tree Expand file tree Collapse file tree 4 files changed +25
-0
lines changed Expand file tree Collapse file tree 4 files changed +25
-0
lines changed Original file line number Diff line number Diff line change 1+ #! /usr/bin/env bash
2+ set -e
3+
4+ echo $PWD
5+
6+ travis_retry docker exec nut-ci bash -c " bash $PWD /.build/build.sh ${PWD} ${NODE_VERSION} "
Original file line number Diff line number Diff line change 1+ #! /usr/bin/env bash
2+ set -e
3+
4+ echo $PWD
5+
6+ npm ci
7+ npm run compile
8+ npm test
Original file line number Diff line number Diff line change 1+ #! /usr/bin/env bash
2+ set -e
3+
4+ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
5+ sudo add-apt-repository " deb [arch=amd64] https://download.docker.com/linux/ubuntu $( lsb_release -cs) stable"
6+ sudo apt-get update
7+ sudo apt-get -y -o Dpkg::Options::=" --force-confnew" install docker-ce
8+ docker pull s1hofmann/nut-ci:latest
9+ docker run -it -d --name nut-ci --user $( id -u) :$( id -g) -v ${PWD} :${PWD} :rw s1hofmann/nut-ci:latest bash
Original file line number Diff line number Diff line change 1+ #! /usr/bin/env bash
2+ set -e
You can’t perform that action at this time.
0 commit comments