-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge commit '5e62433b1dfb01cde916fee2bcb42660c4dbd231'
* commit '5e62433b1dfb01cde916fee2bcb42660c4dbd231': (61 commits) Setting version to 0.8.0-RC4 Publishing fixes. Fixes to compiled docs. Expose python expm1 function Update to release notes and developers list. Fix broken cell_types reference Add docs for new tile functions and clean up new names and signatures Register resample in Python API, update python tests Add simple NN resample function Add source file for rf_exp functions Add Exp inverse functions of Log Add round and log to python API Add is_no_data_tile to python API Add unary tile log functions Small tweaks. Add tile Log expressions Add expression support for UnaryLocalRasterOp and Round expression Reverted accidental commit of local build settings. Additional CatalystSerializer fixes. Fixes to address and detect differences in schemas between CatalystSerializer and ExpressionEncoder. ... # Conflicts: # version.sbt
- Loading branch information
Showing
153 changed files
with
8,538 additions
and
2,354 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,138 @@ | ||
version: 2 | ||
|
||
_defaults: &defaults | ||
working_directory: ~/repo | ||
environment: | ||
TERM: dumb | ||
docker: | ||
- image: circleci/openjdk:8-jdk | ||
|
||
_setenv: &setenv | ||
name: set CloudRepo credentials | ||
command: |- | ||
[ -d $HOME/.sbt ] || mkdir $HOME/.sbt | ||
printf "realm=s22s.mycloudrepo.io\nhost=s22s.mycloudrepo.io\nuser=$CLOUDREPO_USER\npassword=$CLOUDREPO_PASSWORD\n" > $HOME/.sbt/.credentials | ||
_delenv: &unsetenv | ||
name: delete CloudRepo credential | ||
command: rm -rf $HOME/.sbt/.credentials || true | ||
|
||
_restore_cache: &restore_cache | ||
keys: | ||
- v2-dependencies-{{ checksum "build.sbt" }} | ||
- v2-dependencies- | ||
|
||
_save_cache: &save_cache | ||
key: v2-dependencies--{{ checksum "build.sbt" }} | ||
paths: | ||
- ~/.ivy2/cache | ||
- ~/.sbt | ||
- ~/.rf_cache | ||
|
||
jobs: | ||
staticAnalysis: | ||
<<: *defaults | ||
|
||
steps: | ||
- checkout | ||
- run: *setenv | ||
- restore_cache: | ||
<<: *restore_cache | ||
|
||
- run: cat /dev/null | sbt dependencyCheck | ||
- run: cat /dev/null | sbt --debug dumpLicenseReport | ||
|
||
- run: *unsetenv | ||
|
||
- save_cache: | ||
<<: *save_cache | ||
- store_artifacts: | ||
path: datasource/target/scala-2.11/dependency-check-report.html | ||
destination: dependency-check-report-datasource.html | ||
- store_artifacts: | ||
path: experimental/target/scala-2.11/dependency-check-report.html | ||
destination: dependency-check-report-experimental.html | ||
- store_artifacts: | ||
path: core/target/scala-2.11/dependency-check-report.html | ||
destination: dependency-check-report-core.html | ||
- store_artifacts: | ||
path: pyrasterframes/target/scala-2.11/dependency-check-report.html | ||
destination: dependency-check-report-pyrasterframes.html | ||
|
||
test: | ||
<<: *defaults | ||
resource_class: large | ||
steps: | ||
- checkout | ||
- run: *setenv | ||
- restore_cache: | ||
<<: *restore_cache | ||
|
||
- run: sudo apt-get install python-pip pandoc && pip install setuptools # required for pyrasterframes testing | ||
- run: cat /dev/null | sbt test | ||
|
||
- run: *unsetenv | ||
- save_cache: | ||
<<: *save_cache | ||
|
||
publish: | ||
<<: *defaults | ||
resource_class: large | ||
steps: | ||
- checkout | ||
- run: *setenv | ||
- restore_cache: | ||
<<: *restore_cache | ||
|
||
- run: sudo apt-get install python-pip pandoc && pip install setuptools # required for pyrasterframes testing | ||
- run: cat /dev/null | sbt test | ||
- run: cat /dev/null | sbt publish | ||
|
||
- run: *unsetenv | ||
- save_cache: | ||
<<: *save_cache | ||
|
||
it: | ||
<<: *defaults | ||
resource_class: xlarge | ||
steps: | ||
- checkout | ||
- run: *setenv | ||
|
||
- restore_cache: | ||
<<: *restore_cache | ||
|
||
- run: | ||
command: cat /dev/null | sbt it:test | ||
no_output_timeout: 30m | ||
- run: *unsetenv | ||
|
||
- save_cache: | ||
<<: *save_cache | ||
|
||
workflows: | ||
version: 2 | ||
all: | ||
jobs: | ||
- test | ||
- it: | ||
filters: | ||
branches: | ||
only: | ||
- /astraea\/feature\/.*-its/ | ||
- publish: | ||
filters: | ||
branches: | ||
only: | ||
- astraea/develop | ||
nightlyReleaseAstraea: | ||
triggers: | ||
- schedule: | ||
cron: "0 8 * * *" | ||
filters: | ||
branches: | ||
only: | ||
- astraea/develop | ||
jobs: | ||
- it | ||
- staticAnalysis |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.