Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: apache/openwhisk
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2fbbb71e8c7fc0ae37bb8b425bd7ecf48dba6d66
Choose a base ref
..
head repository: apache/openwhisk
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2b41fd1c423582e55e4377316d5e0a957ed7bebc
Choose a head ref
3 changes: 3 additions & 0 deletions .github/workflows/0-on-demand.yaml
Original file line number Diff line number Diff line change
@@ -64,6 +64,9 @@ env:
jobs:
openwhisk:
runs-on: ubuntu-22.04
continue-on-error: false
strategy:
fail-fast: true
steps:
- name: Checkout
uses: actions/checkout@v3
5 changes: 4 additions & 1 deletion .github/workflows/1-unit.yaml
Original file line number Diff line number Diff line change
@@ -49,11 +49,14 @@ env:

# github
GH_BUILD: ${{ github.event_name }}-${{ github.sha }}
GH_BRANCH: ${{ github.head_ref || github.ref_name }}
GH_BRANCH: ${{ github.head_ref || github.ref_name }}

jobs:
openwhisk:
runs-on: ubuntu-22.04
continue-on-error: false
strategy:
fail-fast: true
steps:
- name: Checkout
uses: actions/checkout@v3
5 changes: 4 additions & 1 deletion .github/workflows/2-system.yaml
Original file line number Diff line number Diff line change
@@ -44,11 +44,14 @@ env:

# github
GH_BUILD: ${{ github.event_name }}-${{ github.sha }}
GH_BRANCH: ${{ github.head_ref || github.ref_name }}
GH_BRANCH: ${{ github.head_ref || github.ref_name }}

jobs:
openwhisk:
runs-on: ubuntu-22.04
continue-on-error: false
strategy:
fail-fast: true
steps:
- name: Checkout
uses: actions/checkout@v3
5 changes: 4 additions & 1 deletion .github/workflows/3-multi-runtime.yaml
Original file line number Diff line number Diff line change
@@ -44,11 +44,14 @@ env:

# github
GH_BUILD: ${{ github.event_name }}-${{ github.sha }}
GH_BRANCH: ${{ github.head_ref || github.ref_name }}
GH_BRANCH: ${{ github.head_ref || github.ref_name }}

jobs:
openwhisk:
runs-on: ubuntu-22.04
continue-on-error: false
strategy:
fail-fast: true
steps:
- name: Checkout
uses: actions/checkout@v3
5 changes: 4 additions & 1 deletion .github/workflows/4-standalone.yaml
Original file line number Diff line number Diff line change
@@ -44,11 +44,14 @@ env:

# github
GH_BUILD: ${{ github.event_name }}-${{ github.sha }}
GH_BRANCH: ${{ github.head_ref || github.ref_name }}
GH_BRANCH: ${{ github.head_ref || github.ref_name }}

jobs:
openwhisk:
runs-on: ubuntu-22.04
continue-on-error: false
strategy:
fail-fast: true
steps:
- name: Checkout
uses: actions/checkout@v3
5 changes: 4 additions & 1 deletion .github/workflows/5-scheduler.yaml
Original file line number Diff line number Diff line change
@@ -44,11 +44,14 @@ env:

# github
GH_BUILD: ${{ github.event_name }}-${{ github.sha }}
GH_BRANCH: ${{ github.head_ref || github.ref_name }}
GH_BRANCH: ${{ github.head_ref || github.ref_name }}

jobs:
openwhisk:
runs-on: ubuntu-22.04
continue-on-error: false
strategy:
fail-fast: true
steps:
- name: Checkout
uses: actions/checkout@v3
17 changes: 10 additions & 7 deletions .github/workflows/6-performance.yaml
Original file line number Diff line number Diff line change
@@ -44,11 +44,14 @@ env:

# github
GH_BUILD: ${{ github.event_name }}-${{ github.sha }}
GH_BRANCH: ${{ github.head_ref || github.ref_name }}
GH_BRANCH: ${{ github.head_ref || github.ref_name }}

jobs:
openwhisk:
runs-on: ubuntu-22.04
continue-on-error: false
strategy:
fail-fast: true
steps:
- name: Checkout
uses: actions/checkout@v3
@@ -79,9 +82,9 @@ jobs:
- run: OPENWHISK_HOST="172.17.0.1" USERS="1" REQUESTS_PER_SEC="1" ./gradlew gatlingRun-org.apache.openwhisk.ColdBlockingInvokeSimulation
continue-on-error: true
- name: Slack Notification
run: >
./tools/github/writeOnSlack.sh
"[$TEST_SUITE]" ${{ steps.tests.outcome }} on ${GH_BUILD}
$'\nbranch:' $GH_BRANCH
$'\nmessage:' "$(git log -1 --oneline | cat)"
$'\nCheck GitHub logs for results'
run: >
./tools/github/writeOnSlack.sh
"[$TEST_SUITE]" ${{ steps.tests.outcome }} on ${GH_BUILD}
$'\nbranch:' $GH_BRANCH
$'\nmessage:' "$(git log -1 --oneline | cat)"
$'\nCheck GitHub logs for results'
2 changes: 2 additions & 0 deletions tools/github/setup.sh
Original file line number Diff line number Diff line change
@@ -20,6 +20,8 @@
#then echo skipping setup ; exit 0
#fi

set -e

# retries a command for five times and exits with the non-zero exit if even after
# the retries the command did not succeed.
function retry() {