Nightly Builds #543
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: Nightly Builds | |
on: | |
schedule: | |
- cron: "0 2 * * 1-5" | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
test: | |
name: Run tests | |
runs-on: ubuntu-22.04 | |
if: github.event.repository.fork == false | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
# leaving out combinations covered in `build-test.yml` | |
# { scalaVersion: "2.13", jdkVersion: "1.11.0", jvmName: "temurin:1.11.0", extraOpts: '-J-XX:+UnlockExperimentalVMOptions -J-XX:+UseJVMCICompiler' } | |
- { scalaVersion: "2.13", jdkVersion: "1.17.0", jvmName: "temurin:1.17.0", extraOpts: '' } | |
- { scalaVersion: "2.13", jdkVersion: "1.21.0", jvmName: "temurin:1.21", extraOpts: '' } | |
# { scalaVersion: "3.3", jdkVersion: "1.11.0", jvmName: "temurin:1.11.0", extraOpts: '-J-XX:+UnlockExperimentalVMOptions -J-XX:+UseJVMCICompiler' } | |
- { scalaVersion: "3.3", jdkVersion: "1.17.0", jvmName: "temurin:1.17.0", extraOpts: '' } | |
steps: | |
- name: Checkout | |
# https://github.com/actions/checkout/releases | |
# v4.1.1 | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
with: | |
fetch-depth: 0 | |
- name: Cache Coursier cache | |
# https://github.com/coursier/cache-action/releases | |
# v6.4.5 | |
uses: coursier/cache-action@1ff273bff02a8787bc9f1877d347948af647956d | |
- name: Set up JDK ${{ matrix.jdkVersion }} | |
# https://github.com/coursier/setup-action/releases | |
# v1.3.5 | |
uses: coursier/setup-action@7bde40eee928896f074dbb76d22dd772eed5c65f | |
with: | |
jvm: ${{ matrix.jvmName }} | |
- name: sbt test | |
run: |- | |
cp .jvmopts-ghactions .jvmopts | |
sbt ++${{ matrix.scalaVersion }} \ | |
test ${{ matrix.extraOpts }} | |
- name: Email on failure | |
if: ${{ failure() }} | |
uses: dawidd6/action-send-mail@6063705cefe50cb915fc53bb06d4049cae2953b2 | |
with: | |
server_address: smtp.gmail.com | |
server_port: 465 | |
username: ${{secrets.MAIL_USERNAME}} | |
password: ${{secrets.MAIL_PASSWORD}} | |
subject: "Failed: ${{ github.workflow }} / ${{ github.job }}" | |
to: ${{secrets.MAIL_SEND_TO}} | |
from: Akka gRPC CI | |
body: | | |
Job ${{ github.job }} in workflow ${{ github.workflow }} of ${{github.repository}} failed! | |
https://github.com/${{github.repository}}/actions/runs/${{github.run_id}} |