Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit da30ae3

Browse files
committed
Delete .travis.yml file.
All the workflows are now migrated to Github Actions. Update the on-push.sh script to remove references to TravisCI variables. Signed-off-by: Abdelatif Guettouche <[email protected]>
1 parent 399f4ec commit da30ae3

File tree

2 files changed

+1
-67
lines changed

2 files changed

+1
-67
lines changed

.github/scripts/on-push.sh

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,7 @@
22

33
set -e
44

5-
if [ ! -z "$TRAVIS_TAG" ]; then
6-
echo "Skipping Test: Tagged build"
7-
exit 0
8-
fi
9-
10-
if [ ! -z "$GITHUB_WORKSPACE" ]; then
11-
export TRAVIS_BUILD_DIR="$GITHUB_WORKSPACE"
12-
export TRAVIS_REPO_SLUG="$GITHUB_REPOSITORY"
13-
elif [ ! -z "$TRAVIS_BUILD_DIR" ]; then
14-
export GITHUB_WORKSPACE="$TRAVIS_BUILD_DIR"
15-
export GITHUB_REPOSITORY="$TRAVIS_REPO_SLUG"
16-
else
5+
if [ -z "$GITHUB_WORKSPACE" ]; then
176
export GITHUB_WORKSPACE="$PWD"
187
export GITHUB_REPOSITORY="espressif/arduino-esp32"
198
fi

.travis.yml

Lines changed: 0 additions & 55 deletions
This file was deleted.

0 commit comments

Comments
 (0)