Skip to content

Commit c87ede8

Browse files
authored
Delete .travis.yml file. (espressif#5987)
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 <abdelatif.guettouche@espressif.com>
1 parent c90dffe commit c87ede8

File tree

3 files changed

+2
-68
lines changed

3 files changed

+2
-68
lines changed

.github/scripts/check-cmakelists.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
#
3-
# This script is for Travis. It checks all non-examples source files in libraries/ and cores/ are listed in
3+
# This script is used in the CI workflow. It checks all non-examples source files in libraries/ and cores/ are listed in
44
# CMakeLists.txt for the cmake-based IDF component
55
#
66
# If you see an error running this script, edit CMakeLists.txt and add any new source files into your PR

.github/scripts/on-push.sh

+1-12
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

-55
This file was deleted.

0 commit comments

Comments
 (0)