-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #33 from danicheg/fix-integration-test
Cross build for Scala 2.13: Putting the finishing touches
- Loading branch information
Showing
48 changed files
with
447 additions
and
639 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
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,23 @@ | ||
name: Release | ||
on: | ||
push: | ||
branches: [main] | ||
tags: ["*"] | ||
jobs: | ||
publish: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- uses: actions/setup-java@v3 | ||
with: | ||
distribution: temurin | ||
java-version: 8 | ||
cache: sbt | ||
- run: sbt ci-release | ||
env: | ||
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }} | ||
PGP_SECRET: ${{ secrets.PGP_SECRET }} | ||
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }} | ||
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }} |
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 |
---|---|---|
|
@@ -25,3 +25,10 @@ project/plugins/project/ | |
.hidden | ||
.profiledb_211 | ||
.proxy | ||
|
||
# metals vscode | ||
.bloop | ||
.bsp | ||
.metals | ||
.vscode | ||
metals.sbt |
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,15 +1,7 @@ | ||
[submodule "scalac"] | ||
path = scalac | ||
url = [email protected]:scalacenter/scala.git | ||
branch = 2.12.x | ||
[submodule "vscode-scala"] | ||
path = vscode-scala | ||
url = [email protected]:scalacenter/vscode-scala-profiledb.git | ||
branch = profiledb-integration | ||
[submodule "sbt-plugin/src/sbt-test/external-projects/circe"] | ||
path = sbt-plugin/src/sbt-test/external-projects/circe | ||
url = https://github.com/jvican/circe | ||
branch = master-with-sbt-profiling | ||
[submodule "FlameGraph"] | ||
path = FlameGraph | ||
url = git://github.com/jvican/FlameGraph.git | ||
url = git@github.com:jvican/FlameGraph.git |
Oops, something went wrong.