mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-04-05 19:09:32 +00:00
commit
f8baace4a3
12
.github/renovate.json
vendored
Normal file
12
.github/renovate.json
vendored
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"automerge": true,
|
||||||
|
"labels": ["type: dependencies"],
|
||||||
|
"packageRules": [
|
||||||
|
{
|
||||||
|
"matchManagers": [
|
||||||
|
"sbt"
|
||||||
|
],
|
||||||
|
"enabled": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
13
.github/workflows/auto-approve.yml
vendored
Normal file
13
.github/workflows/auto-approve.yml
vendored
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
name: Auto approve
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request_target
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
auto-approve:
|
||||||
|
runs-on: ubuntu-20.04
|
||||||
|
steps:
|
||||||
|
- uses: hmarr/auto-approve-action@v2.1.0
|
||||||
|
if: github.actor == 'scala-steward'
|
||||||
|
with:
|
||||||
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
33
.github/workflows/ci.yml
vendored
Normal file
33
.github/workflows/ci.yml
vendored
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
name: CI
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
jobs:
|
||||||
|
ci-matrix:
|
||||||
|
runs-on: ubuntu-20.04
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
java: [ 'openjdk@1.11' ]
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2.3.4
|
||||||
|
with:
|
||||||
|
fetch-depth: 100
|
||||||
|
- uses: jorelali/setup-elm@v3
|
||||||
|
with:
|
||||||
|
elm-version: 0.19.1
|
||||||
|
- uses: bahmutov/npm-install@v1
|
||||||
|
- name: Fetch tags
|
||||||
|
run: git fetch --depth=100 origin +refs/tags/*:refs/tags/*
|
||||||
|
- uses: olafurpg/setup-scala@v10
|
||||||
|
with:
|
||||||
|
java-version: ${{ matrix.java }}
|
||||||
|
- name: Coursier cache
|
||||||
|
uses: coursier/cache-action@v6
|
||||||
|
- name: sbt ci ${{ github.ref }}
|
||||||
|
run: sbt ci
|
||||||
|
ci:
|
||||||
|
runs-on: ubuntu-20.04
|
||||||
|
needs: [ci-matrix]
|
||||||
|
steps:
|
||||||
|
- name: Aggregate of lint, and all tests
|
||||||
|
run: echo "ci passed"
|
35
.travis.yml
35
.travis.yml
@ -1,35 +0,0 @@
|
|||||||
language: scala
|
|
||||||
scala:
|
|
||||||
- 2.13.5
|
|
||||||
|
|
||||||
jdk:
|
|
||||||
- openjdk11
|
|
||||||
|
|
||||||
cache:
|
|
||||||
directories:
|
|
||||||
- $HOME/.ivy2/cache
|
|
||||||
- $HOME/.sbt/boot
|
|
||||||
- $HOME/.coursier/cache
|
|
||||||
- $HOME/.cache/coursier
|
|
||||||
- sysconfcpus
|
|
||||||
|
|
||||||
install:
|
|
||||||
- TRAVIS_NODE_VERSION="10" nvm install node
|
|
||||||
- nvm use node
|
|
||||||
- node --version
|
|
||||||
- npm --version
|
|
||||||
- npm install -g elm
|
|
||||||
- |
|
|
||||||
# update this only when sbt-the-bash-script needs to be updated
|
|
||||||
export SBT_LAUNCHER=1.4.8
|
|
||||||
export SBT_OPTS="-Dfile.encoding=UTF-8"
|
|
||||||
curl -L --silent "https://github.com/sbt/sbt/releases/download/v$SBT_LAUNCHER/sbt-$SBT_LAUNCHER.tgz" > $HOME/sbt.tgz
|
|
||||||
tar zxf $HOME/sbt.tgz -C $HOME
|
|
||||||
sudo rm /usr/local/bin/sbt
|
|
||||||
sudo ln -s $HOME/sbt/bin/sbt /usr/local/bin/sbt
|
|
||||||
|
|
||||||
before_script:
|
|
||||||
- export TZ=Europe/Berlin
|
|
||||||
|
|
||||||
script:
|
|
||||||
- sbt -J-XX:+UseG1GC ++$TRAVIS_SCALA_VERSION ";project root ;scalafmtCheckAll ;make ;test"
|
|
26
build.sbt
26
build.sbt
@ -39,9 +39,9 @@ val sharedSettings = Seq(
|
|||||||
val dir = (LocalRootProject / baseDirectory).value / "tools"
|
val dir = (LocalRootProject / baseDirectory).value / "tools"
|
||||||
packageTools(logger, dir, v)
|
packageTools(logger, dir, v)
|
||||||
},
|
},
|
||||||
scalacOptions in (Compile, console) :=
|
Compile / console / scalacOptions :=
|
||||||
(scalacOptions.value.filter(o => !o.contains("-Xlint") && !o.contains("-W"))),
|
(scalacOptions.value.filter(o => !o.contains("-Xlint") && !o.contains("-W"))),
|
||||||
scalacOptions in (Test, console) :=
|
Test / console / scalacOptions :=
|
||||||
(scalacOptions.value.filter(o => !o.contains("-Xlint") && !o.contains("-W")))
|
(scalacOptions.value.filter(o => !o.contains("-Xlint") && !o.contains("-W")))
|
||||||
) ++ scalafixSettings
|
) ++ scalafixSettings
|
||||||
|
|
||||||
@ -83,7 +83,7 @@ val stylesSettings = Seq(
|
|||||||
def webjarSettings(queryJS: Project) = Seq(
|
def webjarSettings(queryJS: Project) = Seq(
|
||||||
Compile / resourceGenerators += Def.task {
|
Compile / resourceGenerators += Def.task {
|
||||||
copyWebjarResources(
|
copyWebjarResources(
|
||||||
Seq((sourceDirectory in Compile).value / "webjar"),
|
Seq((Compile / sourceDirectory).value / "webjar"),
|
||||||
(Compile / resourceManaged).value,
|
(Compile / resourceManaged).value,
|
||||||
name.value,
|
name.value,
|
||||||
version.value,
|
version.value,
|
||||||
@ -112,7 +112,7 @@ def webjarSettings(queryJS: Project) = Seq(
|
|||||||
def debianSettings(cfgFile: String) =
|
def debianSettings(cfgFile: String) =
|
||||||
Seq(
|
Seq(
|
||||||
maintainer := "Eike Kettner <eike.kettner@posteo.de>",
|
maintainer := "Eike Kettner <eike.kettner@posteo.de>",
|
||||||
mappings in Universal += {
|
Universal / mappings += {
|
||||||
val conf = (Compile / resourceDirectory).value / "reference.conf"
|
val conf = (Compile / resourceDirectory).value / "reference.conf"
|
||||||
if (!conf.exists)
|
if (!conf.exists)
|
||||||
sys.error(s"File $conf not found")
|
sys.error(s"File $conf not found")
|
||||||
@ -570,11 +570,11 @@ val website = project
|
|||||||
.settings(
|
.settings(
|
||||||
name := "docspell-website",
|
name := "docspell-website",
|
||||||
publishArtifact := false,
|
publishArtifact := false,
|
||||||
skip in publish := true,
|
publish / skip := true,
|
||||||
ghpagesNoJekyll := true,
|
ghpagesNoJekyll := true,
|
||||||
// the ghpages plugins works together with the site plugin (its a dependency)
|
// the ghpages plugins works together with the site plugin (its a dependency)
|
||||||
// to make it publish the zola generated site, override their mappings with the zola output
|
// to make it publish the zola generated site, override their mappings with the zola output
|
||||||
mappings in SitePlugin.autoImport.makeSite :=
|
SitePlugin.autoImport.makeSite / mappings :=
|
||||||
Path.selectSubpaths(zolaOutputDir.value, _ => true).toSeq,
|
Path.selectSubpaths(zolaOutputDir.value, _ => true).toSeq,
|
||||||
git.remoteRepo := "git@github.com:eikek/docspell",
|
git.remoteRepo := "git@github.com:eikek/docspell",
|
||||||
Compile / resourceGenerators += Def.task {
|
Compile / resourceGenerators += Def.task {
|
||||||
@ -584,10 +584,10 @@ val website = project
|
|||||||
val logger = streams.value.log
|
val logger = streams.value.log
|
||||||
|
|
||||||
val files = Seq(
|
val files = Seq(
|
||||||
(resourceDirectory in (restserver, Compile)).value / "reference.conf" -> templateOut / "server.conf",
|
(restserver / Compile / resourceDirectory).value / "reference.conf" -> templateOut / "server.conf",
|
||||||
(resourceDirectory in (joex, Compile)).value / "reference.conf" -> templateOut / "joex.conf",
|
(joex / Compile / resourceDirectory).value / "reference.conf" -> templateOut / "joex.conf",
|
||||||
(LocalRootProject / baseDirectory).value / "tools" / "exim" / "exim.conf" -> templateOut / "sample-exim.conf",
|
(LocalRootProject / baseDirectory).value / "tools" / "exim" / "exim.conf" -> templateOut / "sample-exim.conf",
|
||||||
(resourceDirectory in (restapi, Compile)).value / "docspell-openapi.yml" -> staticOut / "docspell-openapi.yml",
|
(restapi / Compile / resourceDirectory).value / "docspell-openapi.yml" -> staticOut / "docspell-openapi.yml",
|
||||||
(restapi / Compile / openapiStaticDoc).value -> staticOut / "docspell-openapi.html"
|
(restapi / Compile / openapiStaticDoc).value -> staticOut / "docspell-openapi.html"
|
||||||
)
|
)
|
||||||
IO.copy(files)
|
IO.copy(files)
|
||||||
@ -777,4 +777,10 @@ addCommandAlias("make-zip", ";restserver/universal:packageBin ;joex/universal:pa
|
|||||||
addCommandAlias("make-deb", ";restserver/debian:packageBin ;joex/debian:packageBin")
|
addCommandAlias("make-deb", ";restserver/debian:packageBin ;joex/debian:packageBin")
|
||||||
addCommandAlias("make-tools", ";root/toolsPackage")
|
addCommandAlias("make-tools", ";root/toolsPackage")
|
||||||
addCommandAlias("make-pkg", ";clean ;make ;make-zip ;make-deb ;make-tools")
|
addCommandAlias("make-pkg", ";clean ;make ;make-zip ;make-deb ;make-tools")
|
||||||
addCommandAlias("reformatAll", ";project root ;scalafix ;scalafmtAll")
|
|
||||||
|
addCommandAlias("ci", "make; lint; test")
|
||||||
|
addCommandAlias(
|
||||||
|
"lint",
|
||||||
|
"scalafmtSbtCheck; scalafmtCheckAll; Compile/scalafix --check; Test/scalafix --check"
|
||||||
|
)
|
||||||
|
addCommandAlias("fix", "Compile/scalafix; Test/scalafix; scalafmtSbt; scalafmtAll")
|
||||||
|
@ -1 +1 @@
|
|||||||
version in ThisBuild := "0.22.0-SNAPSHOT"
|
ThisBuild / version := "0.22.0-SNAPSHOT"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user