Fixing stRandom/randomStatetest649.json test #459
Workflow file for this run
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: Legacy E2E tests | |
on: # yamllint disable-line rule:truthy | |
push: | |
branches: | |
- main | |
- develop | |
pull_request: | |
workflow_dispatch: | |
workflow_call: | |
outputs: | |
workflow_output: | |
description: "E2E Legacy output" | |
value: ${{ jobs.build.outputs.e2e_legacy_output_failure }} | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
E2E_TESTS: true | |
E2E_LOGS: true | |
CI_VERBOSE: true | |
outputs: | |
e2e_legacy_output_failure: ${{ steps.run_e2e_legacy_failure.outputs.test_output }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4.1.1 | |
with: | |
submodules: recursive | |
- name: Install Go | |
uses: actions/setup-go@v5.0.0 | |
with: | |
go-version: 1.20.x | |
- name: Run tests | |
run: make test-e2e | |
- name: Run tests failed | |
if: failure() | |
id: run_e2e_legacy_failure | |
run: echo "test_output=false" >> $GITHUB_OUTPUT | |
- name: Archive test logs | |
if: always() | |
uses: actions/upload-artifact@v4.3.0 | |
with: | |
name: e2e-logs | |
path: e2e-logs-*/ | |
retention-days: 30 |