Skip to content

Commit

Permalink
Merge pull request #147 from TouK/staging
Browse files Browse the repository at this point in the history
Merge staging to main
  • Loading branch information
mslabek authored Sep 12, 2023
2 parents 358e333 + c7e8288 commit eabb530
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/benchmark-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@ jobs:
runs-on: ubuntu-latest
env:
# temporarily force NU built with scala 2.12, cause default build (2.13) does not work with Flink out of the box now.
NUSSKNACKER_VERSION: ${{ inputs.nussknacker_version != '' && inputs.nussknacker_version || 'staging-latest_scala-2.12' }}
NUSSKNACKER_VERSION: ${{
endsWith(inputs.nussknacker_version, 'SNAPSHOT') && format('{0}_{1}', inputs.nussknacker_version, 'scala-2.12') ||
inputs.nussknacker_version != '' && inputs.nussknacker_version ||
'staging-latest_scala-2.12' }}
defaults:
run:
shell: bash
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,15 @@ env:
NUSSKNACKER_VERSION: ${{ inputs.nussknacker_version != '' && inputs.nussknacker_version || (github.base_ref == 'staging' || github.ref_name == 'staging') && 'staging-latest' || 'latest' }}

jobs:

docker-compose-streaming-test:
runs-on: ubuntu-latest
env:
# temporarily force NU built with scala 2.12, cause default build (2.13) does not work with Flink out of the box now.
NUSSKNACKER_VERSION: ${{ inputs.nussknacker_version != '' && inputs.nussknacker_version || (github.base_ref == 'staging' || github.ref_name == 'staging') && 'staging-latest_scala-2.12' || 'latest_scala-2.12' }}
NUSSKNACKER_VERSION: ${{
endsWith(inputs.nussknacker_version, 'SNAPSHOT') && format('{0}_{1}', inputs.nussknacker_version, 'scala-2.12') ||
inputs.nussknacker_version != '' && inputs.nussknacker_version ||
(github.base_ref == 'staging' || github.ref_name == 'staging') && 'staging-latest_scala-2.12' ||
'latest_scala-2.12' }}
steps:
- name: Cancel previous runs
uses: styfle/[email protected]
Expand Down

0 comments on commit eabb530

Please sign in to comment.