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

Be consistent about using Ellipsoid.WGS84 in CzmlDataSource #11190

Merged
merged 7 commits into from
Jul 31, 2023

Merge branch 'main' into czml-wgs84

be62a8e
Select commit
Failed to load commit list.
Merged

Be consistent about using Ellipsoid.WGS84 in CzmlDataSource #11190

Merge branch 'main' into czml-wgs84
be62a8e
Select commit
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Jul 27, 2023 in 8m 16s

Build Passed

The build passed, just like the previous build.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #11190 Be consistent about using Ellipsoid.WGS84 in CzmlDataSource.
Any changes that have been made to the main branch before the build ran are also included.

Jobs and Stages

This build has four jobs, running in parallel.

Job Node.js OS State
44900.1 Coverage 18 Linux passed
44900.2 Release Tests 18 Linux passed
44900.3 Linting, Deployment 18 Linux passed
44900.4 NodeJS 16 16 Linux passed

Build Configuration

Build Option Setting
Language Node.js
Operating System Linux (Focal)
Build Configuration
{
  "language": "node_js",
  "os": [
    "linux"
  ],
  "dist": "focal",
  "addons": {
    "chrome": "stable",
    "firefox": "latest"
  },
  "notifications": {
    "slack": [
]

},
"jobs": {
"include": [
{
"name": "Coverage",
"node_js": "18",
"before_script": [
"curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"",
"unzip awscliv2.zip",
"sudo ./aws/install"
],
"script": [
"./travis/coverage.sh"
]
},
{
"name": "Release Tests",
"node_js": "18",
"script": [
"./travis/test-release.sh",
"./travis/verify.sh",
"npm --silent run cloc"
]
},
{
"name": "Linting, Deployment",
"node_js": "18",
"script": [
"./travis/prepare.sh",
"npm --silent run deploy-status -- --status pending --message 'Waiting for build'",
"npm --silent run eslint",
"npm --silent run markdownlint",
"npm --silent run prettier-check",
"./travis/release.sh",
"./travis/deploy.sh"
]
},
{
"name": "NodeJS 16",
"node_js": "16",
"script": [
"npm --silent run build-release",
"./travis/verify.sh"
]
}
]
}
}