temporarily remove email action from github builds (#9)
This commit is contained in:
parent
07d7a3eb31
commit
b46dfd85da
7 changed files with 166 additions and 156 deletions
|
|
@ -42,17 +42,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
|
# comment out email actions until we have an email address to use (and we need to get INFRA to whitelist dawidd6/action-send-mail)
|
||||||
if: ${{ failure() }}
|
#- name: Email on failure
|
||||||
uses: dawidd6/action-send-mail@v3
|
# if: ${{ failure() }}
|
||||||
with:
|
# uses: dawidd6/action-send-mail@v3
|
||||||
server_address: smtp.gmail.com
|
# with:
|
||||||
server_port: 465
|
# server_address: smtp.gmail.com
|
||||||
username: ${{secrets.MAIL_USERNAME}}
|
# server_port: 465
|
||||||
password: ${{secrets.MAIL_PASSWORD}}
|
# username: ${{secrets.MAIL_USERNAME}}
|
||||||
subject: "Failed: ${{ github.workflow }} / ${{ github.job }}"
|
# password: ${{secrets.MAIL_PASSWORD}}
|
||||||
to: akka.official@gmail.com
|
# subject: "Failed: ${{ github.workflow }} / ${{ github.job }}"
|
||||||
from: Akka CI (GHActions)
|
# to: akka.official@gmail.com
|
||||||
body: |
|
# from: Akka CI (GHActions)
|
||||||
Job ${{ github.job }} in workflow ${{ github.workflow }} of ${{github.repository}} failed!
|
# body: |
|
||||||
https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}
|
# Job ${{ github.job }} in workflow ${{ github.workflow }} of ${{github.repository}} failed!
|
||||||
|
# https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}
|
||||||
|
|
|
||||||
61
.github/workflows/multi-node.yml
vendored
61
.github/workflows/multi-node.yml
vendored
|
|
@ -71,22 +71,23 @@ jobs:
|
||||||
-Dmultinode.Daeron.term.buffer.length=33554432 \
|
-Dmultinode.Daeron.term.buffer.length=33554432 \
|
||||||
multiNodeTest
|
multiNodeTest
|
||||||
|
|
||||||
- name: Email on failure
|
# comment out email actions until we have an email address to use (and we need to get INFRA to whitelist dawidd6/action-send-mail)
|
||||||
if: ${{ failure() }}
|
#- name: Email on failure
|
||||||
uses: dawidd6/action-send-mail@v3
|
# if: ${{ failure() }}
|
||||||
with:
|
# uses: dawidd6/action-send-mail@v3
|
||||||
server_address: smtp.gmail.com
|
# with:
|
||||||
server_port: 465
|
# server_address: smtp.gmail.com
|
||||||
|
# server_port: 465
|
||||||
# Using port 465 already sets `secure: true`
|
# Using port 465 already sets `secure: true`
|
||||||
secure: true
|
# secure: true
|
||||||
username: ${{secrets.MAIL_USERNAME}}
|
# username: ${{secrets.MAIL_USERNAME}}
|
||||||
password: ${{secrets.MAIL_PASSWORD}}
|
# password: ${{secrets.MAIL_PASSWORD}}
|
||||||
subject: Multi node test (Akka)
|
# subject: Multi node test (Akka)
|
||||||
to: akka.official@gmail.com
|
# to: akka.official@gmail.com
|
||||||
from: Akka CI (GHActions)
|
# from: Akka CI (GHActions)
|
||||||
body: |
|
# body: |
|
||||||
Multi node test of ${{github.repository}} failed!
|
# Multi node test of ${{github.repository}} failed!
|
||||||
https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}
|
# https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}
|
||||||
|
|
||||||
- name: Cleanup the environment
|
- name: Cleanup the environment
|
||||||
if: ${{ always() }}
|
if: ${{ always() }}
|
||||||
|
|
@ -155,22 +156,22 @@ jobs:
|
||||||
-Dmultinode.Daeron.term.buffer.length=33554432 \
|
-Dmultinode.Daeron.term.buffer.length=33554432 \
|
||||||
multiNodeTest
|
multiNodeTest
|
||||||
|
|
||||||
- name: Email on failure
|
#- name: Email on failure
|
||||||
if: ${{ failure() }}
|
# if: ${{ failure() }}
|
||||||
uses: dawidd6/action-send-mail@v3
|
# uses: dawidd6/action-send-mail@v3
|
||||||
with:
|
# with:
|
||||||
server_address: smtp.gmail.com
|
# server_address: smtp.gmail.com
|
||||||
server_port: 465
|
# server_port: 465
|
||||||
# Using port 465 already sets `secure: true`
|
# Using port 465 already sets `secure: true`
|
||||||
secure: true
|
# secure: true
|
||||||
username: ${{secrets.MAIL_USERNAME}}
|
# username: ${{secrets.MAIL_USERNAME}}
|
||||||
password: ${{secrets.MAIL_PASSWORD}}
|
# password: ${{secrets.MAIL_PASSWORD}}
|
||||||
subject: Multi node test with Aeron (Akka)
|
# subject: Multi node test with Aeron (Akka)
|
||||||
to: akka.official@gmail.com
|
# to: akka.official@gmail.com
|
||||||
from: Akka CI (GHActions)
|
# from: Akka CI (GHActions)
|
||||||
body: |
|
# body: |
|
||||||
Multi node test of ${{github.repository}} failed!
|
# Multi node test of ${{github.repository}} failed!
|
||||||
https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}
|
# https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}
|
||||||
|
|
||||||
- name: Cleanup the environment
|
- name: Cleanup the environment
|
||||||
if: ${{ always() }}
|
if: ${{ always() }}
|
||||||
|
|
|
||||||
116
.github/workflows/nightly-builds.yml
vendored
116
.github/workflows/nightly-builds.yml
vendored
|
|
@ -52,20 +52,21 @@ jobs:
|
||||||
fail_if_no_tests: false
|
fail_if_no_tests: false
|
||||||
skip_publishing: true
|
skip_publishing: true
|
||||||
|
|
||||||
- name: Email on failure
|
# comment out email actions until we have an email address to use (and we need to get INFRA to whitelist dawidd6/action-send-mail)
|
||||||
if: ${{ failure() }}
|
#- name: Email on failure
|
||||||
uses: dawidd6/action-send-mail@v3
|
# if: ${{ failure() }}
|
||||||
with:
|
# uses: dawidd6/action-send-mail@v3
|
||||||
server_address: smtp.gmail.com
|
# with:
|
||||||
server_port: 465
|
# server_address: smtp.gmail.com
|
||||||
username: ${{secrets.MAIL_USERNAME}}
|
# server_port: 465
|
||||||
password: ${{secrets.MAIL_PASSWORD}}
|
# username: ${{secrets.MAIL_USERNAME}}
|
||||||
subject: "Failed: ${{ github.workflow }} / ${{ github.job }}"
|
# password: ${{secrets.MAIL_PASSWORD}}
|
||||||
to: akka.official@gmail.com
|
# subject: "Failed: ${{ github.workflow }} / ${{ github.job }}"
|
||||||
from: Akka CI (GHActions)
|
# to: akka.official@gmail.com
|
||||||
body: |
|
# from: Akka CI (GHActions)
|
||||||
Job ${{ github.job }} in workflow ${{ github.workflow }} of ${{github.repository}} failed!
|
# body: |
|
||||||
https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}
|
# Job ${{ github.job }} in workflow ${{ github.workflow }} of ${{github.repository}} failed!
|
||||||
|
# https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}
|
||||||
|
|
||||||
akka-classic-remoting-tests:
|
akka-classic-remoting-tests:
|
||||||
name: Akka Classic Remoting Tests
|
name: Akka Classic Remoting Tests
|
||||||
|
|
@ -106,20 +107,21 @@ jobs:
|
||||||
-Dakka.cluster.assert=on \
|
-Dakka.cluster.assert=on \
|
||||||
clean ${{ matrix.command }}
|
clean ${{ matrix.command }}
|
||||||
|
|
||||||
- name: Email on failure
|
# comment out email actions until we have an email address to use (and we need to get INFRA to whitelist dawidd6/action-send-mail)
|
||||||
if: ${{ failure() }}
|
#- name: Email on failure
|
||||||
uses: dawidd6/action-send-mail@v3
|
# if: ${{ failure() }}
|
||||||
with:
|
# uses: dawidd6/action-send-mail@v3
|
||||||
server_address: smtp.gmail.com
|
# with:
|
||||||
server_port: 465
|
# server_address: smtp.gmail.com
|
||||||
username: ${{secrets.MAIL_USERNAME}}
|
# server_port: 465
|
||||||
password: ${{secrets.MAIL_PASSWORD}}
|
# username: ${{secrets.MAIL_USERNAME}}
|
||||||
subject: "Failed: ${{ github.workflow }} / ${{ github.job }}"
|
# password: ${{secrets.MAIL_PASSWORD}}
|
||||||
to: akka.official@gmail.com
|
# subject: "Failed: ${{ github.workflow }} / ${{ github.job }}"
|
||||||
from: Akka CI (GHActions)
|
# to: akka.official@gmail.com
|
||||||
body: |
|
# from: Akka CI (GHActions)
|
||||||
Job ${{ github.job }} in workflow ${{ github.workflow }} of ${{github.repository}} failed!
|
# body: |
|
||||||
https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}
|
# 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 }}
|
||||||
|
|
@ -203,20 +205,21 @@ jobs:
|
||||||
-Dakka.build.scalaVersion=${{ matrix.scalaVersion }} \
|
-Dakka.build.scalaVersion=${{ matrix.scalaVersion }} \
|
||||||
"+~ ${{ matrix.scalaVersion }} publishLocal publishM2"
|
"+~ ${{ matrix.scalaVersion }} publishLocal publishM2"
|
||||||
|
|
||||||
- name: Email on failure
|
# comment out email actions until we have an email address to use (and we need to get INFRA to whitelist dawidd6/action-send-mail)
|
||||||
if: ${{ failure() }}
|
#- name: Email on failure
|
||||||
uses: dawidd6/action-send-mail@v3
|
# if: ${{ failure() }}
|
||||||
with:
|
# uses: dawidd6/action-send-mail@v3
|
||||||
server_address: smtp.gmail.com
|
# with:
|
||||||
server_port: 465
|
# server_address: smtp.gmail.com
|
||||||
username: ${{secrets.MAIL_USERNAME}}
|
# server_port: 465
|
||||||
password: ${{secrets.MAIL_PASSWORD}}
|
# username: ${{secrets.MAIL_USERNAME}}
|
||||||
subject: "Failed: ${{ github.workflow }} / ${{ github.job }}"
|
# password: ${{secrets.MAIL_PASSWORD}}
|
||||||
to: akka.official@gmail.com
|
# subject: "Failed: ${{ github.workflow }} / ${{ github.job }}"
|
||||||
from: Akka CI (GHActions)
|
# to: akka.official@gmail.com
|
||||||
body: |
|
# from: Akka CI (GHActions)
|
||||||
Job ${{ github.job }} in workflow ${{ github.workflow }} of ${{github.repository}} failed!
|
# body: |
|
||||||
https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}
|
# Job ${{ github.job }} in workflow ${{ github.workflow }} of ${{github.repository}} failed!
|
||||||
|
# https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}
|
||||||
|
|
||||||
akka-artery-aeron-tests:
|
akka-artery-aeron-tests:
|
||||||
name: Akka Artery Aeron Tests
|
name: Akka Artery Aeron Tests
|
||||||
|
|
@ -258,17 +261,18 @@ jobs:
|
||||||
-Daeron.term.buffer.length=33554432 \
|
-Daeron.term.buffer.length=33554432 \
|
||||||
clean ${{ matrix.command }}
|
clean ${{ matrix.command }}
|
||||||
|
|
||||||
- name: Email on failure
|
# comment out email actions until we have an email address to use (and we need to get INFRA to whitelist dawidd6/action-send-mail)
|
||||||
if: ${{ failure() }}
|
#- name: Email on failure
|
||||||
uses: dawidd6/action-send-mail@v3
|
# if: ${{ failure() }}
|
||||||
with:
|
# uses: dawidd6/action-send-mail@v3
|
||||||
server_address: smtp.gmail.com
|
# with:
|
||||||
server_port: 465
|
# server_address: smtp.gmail.com
|
||||||
username: ${{secrets.MAIL_USERNAME}}
|
# server_port: 465
|
||||||
password: ${{secrets.MAIL_PASSWORD}}
|
# username: ${{secrets.MAIL_USERNAME}}
|
||||||
subject: "Failed: ${{ github.workflow }} / ${{ github.job }}"
|
# password: ${{secrets.MAIL_PASSWORD}}
|
||||||
to: akka.official@gmail.com
|
# subject: "Failed: ${{ github.workflow }} / ${{ github.job }}"
|
||||||
from: Akka CI (GHActions)
|
# to: akka.official@gmail.com
|
||||||
body: |
|
# from: Akka CI (GHActions)
|
||||||
Job ${{ github.job }} in workflow ${{ github.workflow }} of ${{github.repository}} failed!
|
# body: |
|
||||||
https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}
|
# Job ${{ github.job }} in workflow ${{ github.workflow }} of ${{github.repository}} failed!
|
||||||
|
# https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}
|
||||||
|
|
|
||||||
29
.github/workflows/publish-docs.yml
vendored
29
.github/workflows/publish-docs.yml
vendored
|
|
@ -37,17 +37,18 @@ jobs:
|
||||||
env:
|
env:
|
||||||
SCP_SECRET: ${{ secrets.SCP_SECRET }}
|
SCP_SECRET: ${{ secrets.SCP_SECRET }}
|
||||||
|
|
||||||
- name: Email on failure
|
# comment out email actions until we have an email address to use (and we need to get INFRA to whitelist dawidd6/action-send-mail)
|
||||||
if: ${{ failure() }}
|
#- name: Email on failure
|
||||||
uses: dawidd6/action-send-mail@v3
|
# if: ${{ failure() }}
|
||||||
with:
|
# uses: dawidd6/action-send-mail@v3
|
||||||
server_address: smtp.gmail.com
|
# with:
|
||||||
server_port: 465
|
# server_address: smtp.gmail.com
|
||||||
username: ${{secrets.MAIL_USERNAME}}
|
# server_port: 465
|
||||||
password: ${{secrets.MAIL_PASSWORD}}
|
# username: ${{secrets.MAIL_USERNAME}}
|
||||||
subject: "Failed: ${{ github.workflow }} / ${{ github.job }}"
|
# password: ${{secrets.MAIL_PASSWORD}}
|
||||||
to: akka.official@gmail.com
|
# subject: "Failed: ${{ github.workflow }} / ${{ github.job }}"
|
||||||
from: Akka CI (GHActions)
|
# to: akka.official@gmail.com
|
||||||
body: |
|
# from: Akka CI (GHActions)
|
||||||
Job ${{ github.job }} in workflow ${{ github.workflow }} of ${{github.repository}} failed!
|
# body: |
|
||||||
https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}
|
# Job ${{ github.job }} in workflow ${{ github.workflow }} of ${{github.repository}} failed!
|
||||||
|
# https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}
|
||||||
|
|
|
||||||
29
.github/workflows/publish.yml
vendored
29
.github/workflows/publish.yml
vendored
|
|
@ -36,17 +36,18 @@ jobs:
|
||||||
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
|
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
|
||||||
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
|
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
|
||||||
|
|
||||||
- name: Email on failure
|
# comment out email actions until we have an email address to use (and we need to get INFRA to whitelist dawidd6/action-send-mail)
|
||||||
if: ${{ failure() }}
|
#- name: Email on failure
|
||||||
uses: dawidd6/action-send-mail@v3
|
# if: ${{ failure() }}
|
||||||
with:
|
# uses: dawidd6/action-send-mail@v3
|
||||||
server_address: smtp.gmail.com
|
# with:
|
||||||
server_port: 465
|
# server_address: smtp.gmail.com
|
||||||
username: ${{secrets.MAIL_USERNAME}}
|
# server_port: 465
|
||||||
password: ${{secrets.MAIL_PASSWORD}}
|
# username: ${{secrets.MAIL_USERNAME}}
|
||||||
subject: "Failed: ${{ github.workflow }} / ${{ github.job }}"
|
# password: ${{secrets.MAIL_PASSWORD}}
|
||||||
to: akka.official@gmail.com
|
# subject: "Failed: ${{ github.workflow }} / ${{ github.job }}"
|
||||||
from: Akka CI (GHActions)
|
# to: akka.official@gmail.com
|
||||||
body: |
|
# from: Akka CI (GHActions)
|
||||||
Job ${{ github.job }} in workflow ${{ github.workflow }} of ${{github.repository}} failed!
|
# body: |
|
||||||
https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}
|
# Job ${{ github.job }} in workflow ${{ github.workflow }} of ${{github.repository}} failed!
|
||||||
|
# https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}
|
||||||
|
|
|
||||||
29
.github/workflows/scala3-build.yml
vendored
29
.github/workflows/scala3-build.yml
vendored
|
|
@ -60,17 +60,18 @@ jobs:
|
||||||
-Dmultinode.XX:+AlwaysActAsServerClassMachine \
|
-Dmultinode.XX:+AlwaysActAsServerClassMachine \
|
||||||
"+~ 3 ${{ matrix.command }}"
|
"+~ 3 ${{ matrix.command }}"
|
||||||
|
|
||||||
- name: Email on failure
|
# comment out email actions until we have an email address to use (and we need to get INFRA to whitelist dawidd6/action-send-mail)
|
||||||
if: ${{ failure() }}
|
#- name: Email on failure
|
||||||
uses: dawidd6/action-send-mail@v3
|
# if: ${{ failure() }}
|
||||||
with:
|
# uses: dawidd6/action-send-mail@v3
|
||||||
server_address: smtp.gmail.com
|
# with:
|
||||||
server_port: 465
|
# server_address: smtp.gmail.com
|
||||||
username: ${{secrets.MAIL_USERNAME}}
|
# server_port: 465
|
||||||
password: ${{secrets.MAIL_PASSWORD}}
|
# username: ${{secrets.MAIL_USERNAME}}
|
||||||
subject: "Failed: ${{ github.workflow }} / ${{ github.job }}"
|
# password: ${{secrets.MAIL_PASSWORD}}
|
||||||
to: akka.official@gmail.com
|
# subject: "Failed: ${{ github.workflow }} / ${{ github.job }}"
|
||||||
from: Akka CI (GHActions)
|
# to: akka.official@gmail.com
|
||||||
body: |
|
# from: Akka CI (GHActions)
|
||||||
Job ${{ github.job }} in workflow ${{ github.workflow }} of ${{github.repository}} failed!
|
# body: |
|
||||||
https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}
|
# Job ${{ github.job }} in workflow ${{ github.workflow }} of ${{github.repository}} failed!
|
||||||
|
# https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}
|
||||||
|
|
|
||||||
29
.github/workflows/timing-tests.yml
vendored
29
.github/workflows/timing-tests.yml
vendored
|
|
@ -51,17 +51,18 @@ jobs:
|
||||||
fail_if_no_tests: false
|
fail_if_no_tests: false
|
||||||
skip_publishing: true
|
skip_publishing: true
|
||||||
|
|
||||||
- name: Email on failure
|
# comment out email actions until we have an email address to use (and we need to get INFRA to whitelist dawidd6/action-send-mail)
|
||||||
if: ${{ failure() }}
|
#- name: Email on failure
|
||||||
uses: dawidd6/action-send-mail@v3
|
# if: ${{ failure() }}
|
||||||
with:
|
# uses: dawidd6/action-send-mail@v3
|
||||||
server_address: smtp.gmail.com
|
# with:
|
||||||
server_port: 465
|
# server_address: smtp.gmail.com
|
||||||
username: ${{secrets.MAIL_USERNAME}}
|
# server_port: 465
|
||||||
password: ${{secrets.MAIL_PASSWORD}}
|
# username: ${{secrets.MAIL_USERNAME}}
|
||||||
subject: "Failed: ${{ github.workflow }} / ${{ github.job }}"
|
# password: ${{secrets.MAIL_PASSWORD}}
|
||||||
to: akka.official@gmail.com
|
# subject: "Failed: ${{ github.workflow }} / ${{ github.job }}"
|
||||||
from: Akka CI (GHActions)
|
# to: akka.official@gmail.com
|
||||||
body: |
|
# from: Akka CI (GHActions)
|
||||||
Job ${{ github.job }} in workflow ${{ github.workflow }} of ${{github.repository}} failed!
|
# body: |
|
||||||
https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}
|
# 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