Skip to content
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

Disabled Travis CI deployment in preparation for project suspension #165

Merged
merged 1 commit into from
Mar 25, 2019
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
44 changes: 22 additions & 22 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,25 +24,25 @@ before_script:
script:
- ant build

# Deploy build artifacts. Travis does not invoke this step for pull request builds
deploy:
# Publish API documentation to GitHub Pages
- provider: pages
github_token: $GITHUB_API_KEY
local_dir: build/doc/javadoc
skip_cleanup: true
on:
branch: develop
# Create CHANGELOG.md in the current directory
- provider: script
script: ./travis/changelog.sh >> CHANGELOG.md
skip_cleanup: true
on:
tags: true
# Create a GitHub release and publish CHANGELOG.md to the release assets
- provider: releases
api_key: $GITHUB_API_KEY
file: CHANGELOG.md
skip_cleanup: true
on:
tags: true
# Deployment has been disabled in preparation for the WorldWind project suspension on April 5, 2019
#deploy:
# # Publish API documentation to GitHub Pages
# - provider: pages
# github_token: $GITHUB_API_KEY
# local_dir: build/doc/javadoc
# skip_cleanup: true
# on:
# branch: develop
# # Create CHANGELOG.md in the current directory
# - provider: script
# script: ./travis/changelog.sh >> CHANGELOG.md
# skip_cleanup: true
# on:
# tags: true
# # Create a GitHub release and publish CHANGELOG.md to the release assets
# - provider: releases
# api_key: $GITHUB_API_KEY
# file: CHANGELOG.md
# skip_cleanup: true
# on:
# tags: true
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ and/or concerns, please feel free to email at:
[email protected]
```

[![Build Status](https://travis-ci.org/NASAWorldWind/WorldWindJava.svg?branch=develop)](https://travis-ci.org/NASAWorldWind/WorldWindJava)
[![Build Status](https://travis-ci.com/NASAWorldWind/WorldWindJava.svg?branch=develop)](https://travis-ci.com/NASAWorldWind/WorldWindJava)

3D virtual globe API for desktop Java, developed by NASA. Provides a geographic context with high-resolution terrain, for visualizing geographic or geo-located information in 3D and 2D. Developers can customize the globe's terrain and imagery. Provides a collection of shapes for displaying and interacting with geographic data and representing a range of geometric objects.

Expand All @@ -25,7 +25,7 @@ Official WorldWind Java releases have the latest stable features, enhancements a

- [GitHub Releases](https://github.com/NASAWorldWind/WorldWindJava/releases/) documents official releases
- [GitHub Milestones](https://github.com/NASAWorldWind/WorldWindJava/milestones) documents upcoming releases and the development roadmap
- [Travis CI](https://travis-ci.org/NASAWorldWind/WorldWindJava) provides continuous integration and build automation
- [Travis CI](https://travis-ci.com/NASAWorldWind/WorldWindJava) provides continuous integration and build automation

## Run a Demo

Expand Down