-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cd01b7c
commit 549cedb
Showing
66 changed files
with
203 additions
and
157 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 |
---|---|---|
|
@@ -2,7 +2,7 @@ name: Documentation | |
|
||
on: | ||
push: | ||
tags: [ 'v*' ] # Push events to matching v*, i.e. v1.0, v20.15.10 | ||
tags: [ 'd*' ] # Temporarily disable this job | ||
|
||
jobs: | ||
publish: | ||
|
@@ -12,15 +12,23 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
lfs: true | ||
fetch-depth: 0 | ||
|
||
- name: Set up JDK 11 | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 11 | ||
|
||
- name: Setup SSH Keys and known_hosts | ||
uses: webfactory/[email protected] | ||
with: | ||
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }} | ||
|
||
- name: Build code | ||
run: sbt stage | ||
- name: Build and deploy Scala documentation | ||
run: sbt makeSite ghpagesPushSite | ||
- name: Build ScalaDoc website | ||
run: sbt makeSite | ||
- name: Deploy ScalaSite | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: sbt ghpagesPushSite |
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
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
name := "Plume" | ||
organization := "io.github.plume-oss" | ||
organization := "com.github.plume-oss" | ||
version := "1.0.0" | ||
|
||
scalaVersion := "2.13.6" | ||
|
@@ -65,8 +65,10 @@ enablePlugins( | |
) | ||
|
||
scmInfo := Some( | ||
ScmInfo(url("https://github.com/plume-oss/plume"), "scm:[email protected]:/plume-oss/plume.git") | ||
ScmInfo(url("https://github.com/plume-oss/plume"), "[email protected]:plume-oss/plume.git") | ||
) | ||
git.remoteRepo := scmInfo.value.get.connection | ||
|
||
homepage := Some(url("https://github.com/plume-oss/plume/")) | ||
licenses := List("Apache-2.0" -> url("https://www.apache.org/licenses/LICENSE-2.0")) | ||
developers := List( | ||
|
@@ -84,10 +86,10 @@ developers := List( | |
) | ||
) | ||
|
||
git.remoteRepo := "[email protected]:plume-oss/plume.git" | ||
|
||
Global / onChangedBuildSource := ReloadOnSourceChanges | ||
|
||
publishMavenStyle := true | ||
|
||
lazy val root = (project in file(".")) | ||
.configs(NeoIntTest) | ||
.settings( | ||
|
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,2 @@ | ||
jdk: | ||
- openjdk11 |
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 |
---|---|---|
@@ -1 +1 @@ | ||
sbt.version=1.5.5 | ||
sbt.version=1.5.7 |
2 changes: 1 addition & 1 deletion
2
.../scala/io/github/plume/oss/HashUtil.scala → ...scala/com/github/plume/oss/HashUtil.scala
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
11 changes: 9 additions & 2 deletions
11
...ain/scala/io/github/plume/oss/Plume.scala → ...in/scala/com/github/plume/oss/Plume.scala
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
2 changes: 1 addition & 1 deletion
2
...hub/plume/oss/drivers/GremlinDriver.scala → ...hub/plume/oss/drivers/GremlinDriver.scala
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
2 changes: 1 addition & 1 deletion
2
...io/github/plume/oss/drivers/IDriver.scala → ...om/github/plume/oss/drivers/IDriver.scala
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
5 changes: 3 additions & 2 deletions
5
...ithub/plume/oss/drivers/Neo4jDriver.scala → ...ithub/plume/oss/drivers/Neo4jDriver.scala
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
4 changes: 2 additions & 2 deletions
4
...hub/plume/oss/drivers/NeptuneDriver.scala → ...hub/plume/oss/drivers/NeptuneDriver.scala
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
4 changes: 2 additions & 2 deletions
4
.../plume/oss/drivers/TigerGraphDriver.scala → .../plume/oss/drivers/TigerGraphDriver.scala
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
2 changes: 1 addition & 1 deletion
2
...plume/oss/drivers/TinkerGraphDriver.scala → ...plume/oss/drivers/TinkerGraphDriver.scala
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
2 changes: 1 addition & 1 deletion
2
...plume/oss/passes/IncrementalKeyPool.scala → ...plume/oss/passes/IncrementalKeyPool.scala
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package io.github.plume.oss.passes | ||
package com.github.plume.oss.passes | ||
|
||
import io.shiftleft.passes.KeyPool | ||
|
||
|
4 changes: 2 additions & 2 deletions
4
...ithub/plume/oss/passes/PlumeCpgPass.scala → ...ithub/plume/oss/passes/PlumeCpgPass.scala
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
9 changes: 9 additions & 0 deletions
9
src/main/scala/com/github/plume/oss/passes/PlumeCpgPassBase.scala
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,9 @@ | ||
package com.github.plume.oss.passes | ||
|
||
import com.github.plume.oss.drivers.IDriver | ||
|
||
trait PlumeCpgPassBase { | ||
|
||
def createAndApply(driver: IDriver): Unit | ||
|
||
} |
2 changes: 1 addition & 1 deletion
2
...e/oss/passes/PlumeDynamicCallLinker.scala → ...e/oss/passes/PlumeDynamicCallLinker.scala
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
6 changes: 3 additions & 3 deletions
6
...ses/concurrent/PlumeCfgCreationPass.scala → ...ses/concurrent/PlumeCfgCreationPass.scala
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
4 changes: 2 additions & 2 deletions
4
...s/concurrent/PlumeConcurrentCpgPass.scala → ...s/concurrent/PlumeConcurrentCpgPass.scala
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
4 changes: 2 additions & 2 deletions
4
...es/concurrent/PlumeConcurrentWriter.scala → ...es/concurrent/PlumeConcurrentWriter.scala
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
6 changes: 3 additions & 3 deletions
6
...es/concurrent/PlumeContainsEdgePass.scala → ...es/concurrent/PlumeContainsEdgePass.scala
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
6 changes: 3 additions & 3 deletions
6
...oss/passes/concurrent/PlumeDiffPass.scala → ...oss/passes/concurrent/PlumeDiffPass.scala
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
4 changes: 2 additions & 2 deletions
4
...oss/passes/concurrent/PlumeHashPass.scala → ...oss/passes/concurrent/PlumeHashPass.scala
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
6 changes: 3 additions & 3 deletions
6
...asses/parallel/PlumeAstCreationPass.scala → ...asses/parallel/PlumeAstCreationPass.scala
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.