-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add sbt-github-actions plugin, upgrade sbt to 1.4.5; * fix crossScalaVersions; * restore crossScalaVersions for all projects; * remove sbt-github-actions plugin; add publish step to * remove clean.yml; * add tags to ignore (starting with "v"); * combine coverage report generation with test run; * remove tags-ignore; * remove snapshot publishing on Travis; * add COVERALLS_REPO_TOKEN env var; * switch from sbt-git to sbt-dynver for 'version'; * add release.yml workflow; * rename main GA workflow to CI; * run coverageReport under matrix scala version; * remove .travis.yml; split code coverage collection and report uploading; * switch to codecov; * add cache to release.yml workflow; * fix import_gpg.sh permissions, add java version to release.yml; * add required SCM url be Sonatype; * add CONTRIBUTING.md with instructions on how to make a release; * update sbt-sonatype plugin; * fix release.yml step name; * delete .travis.jvmopts;
- Loading branch information
Showing
12 changed files
with
151 additions
and
101 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,65 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
- develop | ||
pull_request: | ||
types: | ||
- opened | ||
- synchronize | ||
|
||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
jobs: | ||
build: | ||
name: Test and publish a snapshot | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest] | ||
scala: [2.12.10, 2.11.12] | ||
java: [adopt@1.11] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- name: Checkout current branch (full) | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Setup Java and Scala | ||
uses: olafurpg/setup-scala@v10 | ||
with: | ||
java-version: ${{ matrix.java }} | ||
|
||
- name: Cache sbt | ||
uses: actions/cache@v2 | ||
with: | ||
path: | | ||
~/.sbt | ||
~/.ivy2/cache | ||
~/.coursier/cache/v1 | ||
~/.cache/coursier/v1 | ||
~/AppData/Local/Coursier/Cache/v1 | ||
~/Library/Caches/Coursier/v1 | ||
key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} | ||
|
||
- name: Runs tests and collect coverage | ||
run: sbt -jvm-opts ci/ci.jvmopts ++${{ matrix.scala }} coverage test coverageReport coverageAggregate | ||
|
||
# - name: Upload coverage report | ||
# run: sbt ++${{ matrix.scala }} coverageReport coverageAggregate coveralls | ||
# env: | ||
# COVERALLS_REPO_TOKEN: $${{ secrets.COVERALLS_REPO_TOKEN }} | ||
|
||
- name: Upload coverage report to Codecov | ||
uses: codecov/codecov-action@v1 | ||
with: | ||
fail_ci_if_error: true | ||
|
||
- name: Publish a snapshot ${{ github.ref }} | ||
run: sbt ++${{ matrix.scala }} publish | ||
env: | ||
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 |
---|---|---|
@@ -0,0 +1,44 @@ | ||
name: Publish a release | ||
|
||
on: | ||
release: | ||
types: [published] | ||
|
||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
jobs: | ||
publish_release: | ||
name: Publish release to Sonatype | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Setup Java and Scala | ||
uses: olafurpg/setup-scala@v10 | ||
with: | ||
java-version: adopt@1.11 | ||
|
||
- name: Cache sbt | ||
uses: actions/cache@v2 | ||
with: | ||
path: | | ||
~/.sbt | ||
~/.ivy2/cache | ||
~/.coursier/cache/v1 | ||
~/.cache/coursier/v1 | ||
~/AppData/Local/Coursier/Cache/v1 | ||
~/Library/Caches/Coursier/v1 | ||
key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} | ||
|
||
- name: Import GPG key | ||
run: ci/import_gpg.sh | ||
env: | ||
GPG_SIGNING_KEY: ${{ secrets.GPG_SIGNING_KEY }} | ||
|
||
- name: Publish release ${{ github.ref }} | ||
run: sbt +publishSigned sonatypeBundleRelease | ||
env: | ||
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }} | ||
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 |
---|---|---|
|
@@ -43,4 +43,5 @@ spam-tests/ | |
.bloop/ | ||
.metals/ | ||
.vscode/ | ||
project/metals.sbt | ||
project/metals.sbt | ||
/project/project/ |
This file was deleted.
Oops, something went wrong.
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,4 @@ | ||
## Releasing | ||
To publish release version to Sonatype, do the following: | ||
- make a tag with version number `vX.Y.Z` (used by `sbt-dynver` to set `version` in `build.sbt`); | ||
- use the new tag to make a Github release, which triggers [`release.yml`](.github/workflows/release.yml) workflow and publishes release version to Sonatype; |
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
File renamed without changes.
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,21 @@ | ||
#!/bin/bash | ||
# setting up gpg2 for reading passphrase from parameters | ||
# via https://github.com/beautiful-scala/scalastyle/blob/master/.github/workflows/release.yml#L16 | ||
# from https://github.com/olafurpg/sbt-ci-release/issues/95 | ||
|
||
# setup gpg | ||
mkdir ~/.gnupg && chmod 700 ~/.gnupg | ||
echo use-agent >> ~/.gnupg/gpg.conf | ||
echo pinentry-mode loopback >> ~/.gnupg/gpg.conf | ||
echo allow-loopback-pinentry >> ~/.gnupg/gpg-agent.conf | ||
chmod 600 ~/.gnupg/* | ||
echo RELOADAGENT | gpg-connect-agent | ||
|
||
# decode key | ||
# private key should be previously exported with: | ||
# gpg --export-secret-keys [id] | base64 | pbcopy | ||
# and stored as github repository secret under the following name (see env var name below) | ||
printf "$GPG_SIGNING_KEY" | base64 --decode > ~/.gnupg/private.key | ||
|
||
# import key | ||
gpg --no-tty --batch --yes --import ~/.gnupg/private.key |
This file was deleted.
Oops, something went wrong.
Binary file not shown.
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.2.7 | ||
sbt.version=1.4.5 |
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