Merge pull request #2101 from solliancenet/cj-polling-interval #372
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release End to End Testing | |
on: | |
push: | |
branches: | |
- release/** | |
workflow_dispatch: {} | |
jobs: | |
get_version: | |
name: Get Release Version | |
runs-on: ubuntu-latest | |
if: ${{ (startsWith(github.ref, 'refs/heads/release/') || startsWith(github.ref, 'refs/heads/poc/')) }} | |
outputs: | |
version: ${{ steps.get-version.outputs.result }} | |
steps: | |
- name: Get Release Version | |
id: get-version | |
run: | | |
VERSION=$(echo ${{ github.ref_name }} | cut -d'/' -f 2) | |
echo "VERSION=$VERSION" >> $GITHUB_ENV | |
echo "VERSION: $VERSION" | |
echo "result=$VERSION" >> $GITHUB_OUTPUT | |
daily_e2e_test: | |
if: ${{ (startsWith(github.ref, 'refs/heads/release/') || startsWith(github.ref, 'refs/heads/poc/')) }} | |
uses: ./.github/workflows/e2e-testing.yml | |
needs: get_version | |
with: | |
environment: "fllm-rel-${{ needs.get_version.outputs.version }}-${{ github.run_id }}" | |
deployOpenAi: true | |
openAiName: fllm-01 | |
openAiResourceGroup: fllm-shared-01 | |
location: EastUS2 | |
notificationsEnabled: false | |
enableTeardown: true | |
bypassAndTeardown: false | |
target: e2e | |
secrets: inherit |