Skip to content

Commit b0f35f8

Browse files
authored
Merge pull request #567 from pomadchin/feature/focal-ops-target-cell
Add Focal Operations TargetCell support
2 parents dc72ece + 98b2ea5 commit b0f35f8

File tree

32 files changed

+1027
-760
lines changed

32 files changed

+1027
-760
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ orbs:
99
- image: s22s/circleci-openjdk-conda-gdal:b8e30ee
1010
working_directory: ~/repo
1111
environment:
12-
SBT_OPTS: "-Xms64m -Xmx1536m -Djava.awt.headless=true -Dsun.io.serialization.extendedDebugInfo=true"
12+
SBT_OPTS: "-Xms32M -Xmx2G -XX:+UseStringDeduplication -XX:+UseCompressedOops -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=/tmp"
1313
commands:
1414
setup:
1515
description: Setup for sbt build

.github/workflows/build-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,4 +128,4 @@ jobs:
128128
uses: actions/upload-artifact@v2
129129
with:
130130
name: rf-site
131-
path: docs/target/site
131+
path: docs/target/site

.gitignore

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Thumbs.db
77
*.log
88

99
# sbt specific
10+
1011
.bsp
1112
.cache
1213
.history
@@ -19,6 +20,7 @@ project/boot/
1920
project/plugins/project/
2021

2122
# Scala-IDE specific
23+
2224
.scala_dependencies
2325
.worksheet
2426
.idea
@@ -34,3 +36,14 @@ scoverage-report*
3436

3537
zz-*
3638
rf-notebook/src/main/notebooks/.ipython
39+
40+
# VSCode files
41+
42+
.vscode
43+
.history
44+
45+
# Metals
46+
47+
.metals
48+
.bloop
49+
metals.sbt

0 commit comments

Comments
 (0)