Skip to content

CLN: Remove travis build #41738

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jun 1, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
72 changes: 0 additions & 72 deletions .travis.yml

This file was deleted.

28 changes: 0 additions & 28 deletions ci/check_git_tags.sh

This file was deleted.

74 changes: 0 additions & 74 deletions ci/prep_cython_cache.sh

This file was deleted.

23 changes: 0 additions & 23 deletions ci/setup_env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,29 +63,6 @@ conda update -n base conda
echo "conda info -a"
conda info -a

echo
echo "set the compiler cache to work"
if [ -z "$NOCACHE" ] && [ "${TRAVIS_OS_NAME}" == "linux" ]; then
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

umm is this just not used elsewhere? it seems the builds are now taking a lot longer.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for the heads up. I double checked, and there is nowhere in our code where we set TRAVIS_OS_NAME, so I don't see how any of the conditions here can be true.

I checked the builds, and the only I see that was significantly slower was a Windows one, which doesn't use this file. I guess it's been just randomness, but in any case, I rebased, and if there is anything still significantly slow, I'll have another look.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hmm yeah this might have been old ok great

echo "Using ccache"
export PATH=/usr/lib/ccache:/usr/lib64/ccache:$PATH
GCC=$(which gcc)
echo "gcc: $GCC"
CCACHE=$(which ccache)
echo "ccache: $CCACHE"
export CC='ccache gcc'
elif [ -z "$NOCACHE" ] && [ "${TRAVIS_OS_NAME}" == "osx" ]; then
echo "Install ccache"
brew install ccache > /dev/null 2>&1
echo "Using ccache"
export PATH=/usr/local/opt/ccache/libexec:$PATH
gcc=$(which gcc)
echo "gcc: $gcc"
CCACHE=$(which ccache)
echo "ccache: $CCACHE"
else
echo "Not using ccache"
fi

echo "source deactivate"
source deactivate

Expand Down
29 changes: 0 additions & 29 deletions ci/submit_cython_cache.sh

This file was deleted.