parent
04a2c4270b
commit
299f1239b9
5 changed files with 75 additions and 0 deletions
|
|
@ -41,3 +41,18 @@ jobs:
|
||||||
|
|
||||||
- name: Check correct MiMa filter directories
|
- name: Check correct MiMa filter directories
|
||||||
run: sbt -jvm-opts .jvmopts-ci checkMimaFilterDirectories
|
run: sbt -jvm-opts .jvmopts-ci checkMimaFilterDirectories
|
||||||
|
|
||||||
|
- name: Email on failure
|
||||||
|
if: ${{ failure() }}
|
||||||
|
uses: dawidd6/action-send-mail@v3
|
||||||
|
with:
|
||||||
|
server_address: smtp.gmail.com
|
||||||
|
server_port: 465
|
||||||
|
username: ${{secrets.MAIL_USERNAME}}
|
||||||
|
password: ${{secrets.MAIL_PASSWORD}}
|
||||||
|
subject: "Failed: ${{ github.workflow }} / ${{ github.job }}"
|
||||||
|
to: akka.official@gmail.com
|
||||||
|
from: Akka CI (GHActions)
|
||||||
|
body: |
|
||||||
|
Job ${{ github.job }} in workflow ${{ github.workflow }} of ${{github.repository}} failed!
|
||||||
|
https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}
|
||||||
|
|
|
||||||
15
.github/workflows/nightly-builds.yml
vendored
15
.github/workflows/nightly-builds.yml
vendored
|
|
@ -110,6 +110,21 @@ jobs:
|
||||||
-Dmultinode.XX:+AlwaysActAsServerClassMachine \
|
-Dmultinode.XX:+AlwaysActAsServerClassMachine \
|
||||||
clean ${{ matrix.command }}
|
clean ${{ matrix.command }}
|
||||||
|
|
||||||
|
- name: Email on failure
|
||||||
|
if: ${{ failure() }}
|
||||||
|
uses: dawidd6/action-send-mail@v3
|
||||||
|
with:
|
||||||
|
server_address: smtp.gmail.com
|
||||||
|
server_port: 465
|
||||||
|
username: ${{secrets.MAIL_USERNAME}}
|
||||||
|
password: ${{secrets.MAIL_PASSWORD}}
|
||||||
|
subject: "Failed: ${{ github.workflow }} / ${{ github.job }}"
|
||||||
|
to: akka.official@gmail.com
|
||||||
|
from: Akka CI (GHActions)
|
||||||
|
body: |
|
||||||
|
Job ${{ github.job }} in workflow ${{ github.workflow }} of ${{github.repository}} failed!
|
||||||
|
https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}
|
||||||
|
|
||||||
jdk-nightly-build:
|
jdk-nightly-build:
|
||||||
name: JDK ${{ matrix.jdkVersion }} / Scala ${{ matrix.scalaVersion }}
|
name: JDK ${{ matrix.jdkVersion }} / Scala ${{ matrix.scalaVersion }}
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
|
|
|
||||||
15
.github/workflows/publish-docs.yml
vendored
15
.github/workflows/publish-docs.yml
vendored
|
|
@ -36,3 +36,18 @@ jobs:
|
||||||
sbt -Dakka.genjavadoc.enabled=true "+~ 2.13 publishRsync"
|
sbt -Dakka.genjavadoc.enabled=true "+~ 2.13 publishRsync"
|
||||||
env:
|
env:
|
||||||
SCP_SECRET: ${{ secrets.SCP_SECRET }}
|
SCP_SECRET: ${{ secrets.SCP_SECRET }}
|
||||||
|
|
||||||
|
- name: Email on failure
|
||||||
|
if: ${{ failure() }}
|
||||||
|
uses: dawidd6/action-send-mail@v3
|
||||||
|
with:
|
||||||
|
server_address: smtp.gmail.com
|
||||||
|
server_port: 465
|
||||||
|
username: ${{secrets.MAIL_USERNAME}}
|
||||||
|
password: ${{secrets.MAIL_PASSWORD}}
|
||||||
|
subject: "Failed: ${{ github.workflow }} / ${{ github.job }}"
|
||||||
|
to: akka.official@gmail.com
|
||||||
|
from: Akka CI (GHActions)
|
||||||
|
body: |
|
||||||
|
Job ${{ github.job }} in workflow ${{ github.workflow }} of ${{github.repository}} failed!
|
||||||
|
https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}
|
||||||
|
|
|
||||||
15
.github/workflows/publish.yml
vendored
15
.github/workflows/publish.yml
vendored
|
|
@ -35,3 +35,18 @@ jobs:
|
||||||
PGP_SECRET: ${{ secrets.PGP_SECRET }}
|
PGP_SECRET: ${{ secrets.PGP_SECRET }}
|
||||||
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
|
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
|
||||||
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
|
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
|
||||||
|
|
||||||
|
- name: Email on failure
|
||||||
|
if: ${{ failure() }}
|
||||||
|
uses: dawidd6/action-send-mail@v3
|
||||||
|
with:
|
||||||
|
server_address: smtp.gmail.com
|
||||||
|
server_port: 465
|
||||||
|
username: ${{secrets.MAIL_USERNAME}}
|
||||||
|
password: ${{secrets.MAIL_PASSWORD}}
|
||||||
|
subject: "Failed: ${{ github.workflow }} / ${{ github.job }}"
|
||||||
|
to: akka.official@gmail.com
|
||||||
|
from: Akka CI (GHActions)
|
||||||
|
body: |
|
||||||
|
Job ${{ github.job }} in workflow ${{ github.workflow }} of ${{github.repository}} failed!
|
||||||
|
https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}
|
||||||
|
|
|
||||||
15
.github/workflows/scala3-build.yml
vendored
15
.github/workflows/scala3-build.yml
vendored
|
|
@ -59,3 +59,18 @@ jobs:
|
||||||
-Dmultinode.Xlog:gc \
|
-Dmultinode.Xlog:gc \
|
||||||
-Dmultinode.XX:+AlwaysActAsServerClassMachine \
|
-Dmultinode.XX:+AlwaysActAsServerClassMachine \
|
||||||
"+~ 3 ${{ matrix.command }}"
|
"+~ 3 ${{ matrix.command }}"
|
||||||
|
|
||||||
|
- name: Email on failure
|
||||||
|
if: ${{ failure() }}
|
||||||
|
uses: dawidd6/action-send-mail@v3
|
||||||
|
with:
|
||||||
|
server_address: smtp.gmail.com
|
||||||
|
server_port: 465
|
||||||
|
username: ${{secrets.MAIL_USERNAME}}
|
||||||
|
password: ${{secrets.MAIL_PASSWORD}}
|
||||||
|
subject: "Failed: ${{ github.workflow }} / ${{ github.job }}"
|
||||||
|
to: akka.official@gmail.com
|
||||||
|
from: Akka CI (GHActions)
|
||||||
|
body: |
|
||||||
|
Job ${{ github.job }} in workflow ${{ github.workflow }} of ${{github.repository}} failed!
|
||||||
|
https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue