Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Orekit
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Gaëtan Pierre
Orekit
Commits
f9c208ba
Commit
f9c208ba
authored
3 years ago
by
Luc Maisonobe
Browse files
Options
Downloads
Plain Diff
Merge branch 'develop' into issue-448
parents
f667e8f7
279ea836
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.CI/changes2release.xsl
+25
-0
25 additions, 0 deletions
.CI/changes2release.xsl
.gitlab-ci.yml
+31
-0
31 additions, 0 deletions
.gitlab-ci.yml
src/main/java/org/orekit/propagation/conversion/BrouwerLyddanePropagatorBuilder.java
+1
-1
1 addition, 1 deletion
...opagation/conversion/BrouwerLyddanePropagatorBuilder.java
with
57 additions
and
1 deletion
.CI/changes2release.xsl
0 → 100644
+
25
−
0
View file @
f9c208ba
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet
version=
"1.0"
xmlns:xsl=
"http://www.w3.org/1999/XSL/Transform"
xmlns=
"http://www.w3.org/1999/xhtml"
>
<xsl:output
method=
"text"
encoding=
"UTF-8"
/>
<xsl:template
match=
"/"
>
<xsl:apply-templates
select=
"document/body/release[1]"
/>
</xsl:template>
<xsl:template
match=
"document/body/release"
>
<xsl:text>
Version
</xsl:text><xsl:value-of
select=
"@version"
/><xsl:text>
is a patch release of Orekit. The main changes are:
</xsl:text>
<xsl:apply-templates
select=
"action"
/>
<xsl:text>
</xsl:text>
</xsl:template>
<xsl:template
match=
"document/body/release/action"
>
*
<xsl:value-of
select=
"normalize-space()"
/>
</xsl:template>
</xsl:stylesheet>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
.gitlab-ci.yml
+
31
−
0
View file @
f9c208ba
...
...
@@ -2,6 +2,7 @@ stages:
-
verify
-
visualize
-
deploy
-
release
default
:
# Default image
...
...
@@ -77,6 +78,17 @@ coverage-import:
cobertura
:
target/site/cobertura.xml
coverage
:
'
/Total.*?([0-9]{1,3})%/'
changelog
:
stage
:
verify
image
:
alpine:latest
before_script
:
-
apk add libxslt
script
:
-
xsltproc .CI/changes2release.xsl src/changes/changes.xml > CHANGELOG.md
artifacts
:
paths
:
-
CHANGELOG.md
# On main branches (develop, release-*, master) the produced artifacts are
# deployed on the Nexus of the project (https://packages.orekit.org/)
deploy:artifacts
:
...
...
@@ -119,3 +131,22 @@ performance:
trigger
:
evanward1/orekit-performance
only
:
-
develop@orekit/orekit
release
:
stage
:
release
image
:
registry.gitlab.com/gitlab-org/release-cli:latest
script
:
-
cat CHANGELOG.md
release
:
tag_name
:
$CI_COMMIT_TAG
description
:
'
./CHANGELOG.md'
assets
:
links
:
-
name
:
orekit-${CI_COMMIT_TAG}.jar
url
:
https://packages.orekit.org/repository/maven-releases/org/orekit/orekit/${CI_COMMIT_TAG}/orekit-${CI_COMMIT_TAG}.jar
-
name
:
orekit-${CI_COMMIT_TAG}-javadoc.jar
url
:
https://packages.orekit.org/repository/maven-releases/org/orekit/orekit/${CI_COMMIT_TAG}/orekit-${CI_COMMIT_TAG}-javadoc.jar
-
name
:
orekit-${CI_COMMIT_TAG}-sources.jar
url
:
https://packages.orekit.org/repository/maven-releases/org/orekit/orekit/${CI_COMMIT_TAG}/orekit-${CI_COMMIT_TAG}-sources.jar
rules
:
-
if
:
'
$CI_COMMIT_TAG
=~
/^[.0-9]+$/'
This diff is collapsed.
Click to expand it.
src/main/java/org/orekit/propagation/conversion/BrouwerLyddanePropagatorBuilder.java
+
1
−
1
View file @
f9c208ba
...
...
@@ -77,7 +77,7 @@ public class BrouwerLyddanePropagatorBuilder extends AbstractPropagatorBuilder i
* in the multiplications/divisions sequences.
* </p>
*/
private
static
final
double
SCALE
=
FastMath
.
scalb
(
1.0
,
-
2
0
);
private
static
final
double
SCALE
=
FastMath
.
scalb
(
1.0
,
-
3
2
);
/** Provider for un-normalized coefficients. */
private
final
UnnormalizedSphericalHarmonicsProvider
provider
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment