Update s3 to 2.28.21 (#1632) #3834
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
name: CI | |
on: | |
pull_request: | |
branches: | |
- '*' | |
push: | |
branches: | |
- master | |
jobs: | |
format: | |
name: Format | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Branch Checkout | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
- name: Install Java And Sbt | |
uses: olafurpg/setup-scala@v10 | |
with: | |
java-version: [email protected] | |
- name: Cache | |
uses: actions/cache@v2 | |
with: | |
path: | | |
$HOME/.cache/coursier | |
$HOME/.ivy2/cache | |
$HOME/.sbt/boot/ | |
$HOME/.sbt | |
lib_managed | |
target | |
project/target | |
key: ${{ runner.os }}-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} | |
- name: Check with Scalafmt | |
run: sbt ++2.13.14 fmtCheck | |
build: | |
name: Test | |
needs: format | |
strategy: | |
matrix: | |
scala: | |
- 2.13.14 | |
- 3.3.1 | |
java: | |
- [email protected] | |
- [email protected] | |
os: | |
- ubuntu-20.04 | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Branch Checkout | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
- name: Install Java And Sbt | |
uses: olafurpg/setup-scala@v10 | |
with: | |
java-version: ${{ matrix.java }} | |
- name: Cache | |
uses: actions/cache@v2 | |
with: | |
path: | | |
$HOME/.cache/coursier | |
$HOME/.ivy2/cache | |
$HOME/.sbt/boot/ | |
$HOME/.sbt | |
lib_managed | |
target | |
project/target | |
key: ${{ runner.os }}-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} | |
- name: Test (${{ matrix.scala }}, ${{ matrix.java }}) | |
run: sbt ++${{ matrix.scala }} fullTest | |
publish_213: | |
if: github.event_name == 'push' && github.ref == 'refs/heads/master' | |
name: Publish Snapshot 2.13 | |
needs: build | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Branch Checkout | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
- name: Install Java And Sbt | |
uses: olafurpg/setup-scala@v10 | |
with: | |
java-version: [email protected] | |
- name: Cache | |
uses: actions/cache@v2 | |
with: | |
path: | | |
$HOME/.cache/coursier | |
$HOME/.ivy2/cache | |
$HOME/.sbt/boot/ | |
$HOME/.sbt | |
lib_managed | |
target | |
project/target | |
key: ${{ runner.os }}-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} | |
- name: Publish Snapshot for Scala 2.13 | |
run: CI_SNAPSHOT_RELEASE=publish sbt ++2.13.14 releaseIt | |
env: | |
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }} | |
PGP_SECRET: ${{ secrets.PGP_SECRET }} | |
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }} | |
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }} | |
publish_3: | |
if: github.event_name == 'push' && github.ref == 'refs/heads/master' | |
name: Publish Snapshot 3 | |
needs: publish_213 | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Branch Checkout | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
- name: Install Java And Sbt | |
uses: olafurpg/setup-scala@v10 | |
with: | |
java-version: [email protected] | |
- name: Cache | |
uses: actions/cache@v2 | |
with: | |
path: | | |
$HOME/.cache/coursier | |
$HOME/.ivy2/cache | |
$HOME/.sbt/boot/ | |
$HOME/.sbt | |
lib_managed | |
target | |
project/target | |
key: ${{ runner.os }}-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} | |
- name: Publish Snapshot for Scala 3 | |
run: CI_SNAPSHOT_RELEASE=publish sbt ++3.3.1 releaseIt | |
env: | |
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }} | |
PGP_SECRET: ${{ secrets.PGP_SECRET }} | |
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }} | |
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }} |