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: eclipse-edc/Technology-HuaweiCloud
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0b9d5033f904a15303eb9d93acd583c14890a7ae
Choose a base ref
..
head repository: eclipse-edc/Technology-HuaweiCloud
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 53324e393a7b895353a77dc1fd1b727d5437ff1b
Choose a head ref
Showing with 15 additions and 14 deletions.
  1. +15 −14 .github/workflows/integration-tests.yaml
29 changes: 15 additions & 14 deletions .github/workflows/integration-tests.yaml
Original file line number Diff line number Diff line change
@@ -19,7 +19,8 @@ jobs:
run: |
[ ! -z "${{ secrets.obs_access_key_id }}" ] &&
[ ! -z "${{ secrets.obs_secret_key }}" ] && echo "HAS_OTC_CRED=true" >> $GITHUB_OUTPUT
[ ! -z "${{ secrets.pg_connection_string }}" ] && echo "HAS_PG_CONNECTION_STRING=true" >> $GITHUB_OUTPUT
[ ! -z "${{ secrets.pg_connection_string }}" ] && echo "HAS_PG_CONNECTION_STRING=true" >> $GITHUB_OUTPUT &&
echo
exit 0
End-to-End-Test:
@@ -32,18 +33,18 @@ jobs:
./gradlew compileJava compileTestJava
./gradlew test -DincludeTags="EndToEndTest" -PverboseTest=true
Obs-Otc-Test:
runs-on: ubuntu-latest
needs: [ secret-presence ]
# Obs-Otc-Test:
# runs-on: ubuntu-latest
# needs: [ secret-presence ]
# if: |
# needs.secret-presence.outputs.HAS_OTC_CRED
env:
OBS_ACCESS_KEY_ID: ${{ secrets.ACCESS_KEY }}
OBS_SECRET_ACCESS_KEY: ${{ secrets.SECRET_KEY }}
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-java
- name: OTC Cloud Tests
run: |
./gradlew compileJava compileTestJava
./gradlew test -DincludeTags="OtcTest" -PverboseTest=true
# env:
# OBS_ACCESS_KEY_ID: ${{ secrets.OBS_ACCESS_KEY_ID }}
# OBS_SECRET_ACCESS_KEY: ${{ secrets.OBS_SECRET_ACCESS_KEY }}
# steps:
# - uses: actions/checkout@v4
# - uses: ./.github/actions/setup-java
# - name: OTC Cloud Tests
# run: |
# ./gradlew compileJava compileTestJava
# ./gradlew test -DincludeTags="OtcTest" -PverboseTest=true