Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/cre-regression-system-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ on:

jobs:
define-test-matrix:
runs-on: runs-on=${{ github.run_id }}/cpu=8/ram=32/family=m6i+m5.*/spot=false/image=ubuntu24-full-x64/extras=s3-cache+tmpfs
runs-on: runs-on=${{ github.run_id }}/cpu=16/ram=128/family=r6i.*/spot=false/image=ubuntu24-full-x64/extras=s3-cache+tmpfs
outputs:
matrix: ${{ steps.define-matrix.outputs.matrix }}
permissions:
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
needs: [define-test-matrix]
# we need a `test_id` and `run_attempt` here to stop runner stealing
# see: https://runs-on.com/guides/troubleshoot/#runner-stealing-and-matrix-jobs
runs-on: runs-on=${{ github.run_id }}-${{ matrix.tests.test_id }}-${{ github.run_attempt }}/cpu=16/ram=64/family=m6i+m5.*/spot=false/image=ubuntu24-full-x64/extras=s3-cache+tmpfs
runs-on: runs-on=${{ github.run_id }}-${{ matrix.tests.test_id }}-${{ github.run_attempt }}/cpu=16/ram=128/family=r6i.*/spot=false/image=ubuntu24-full-x64/extras=s3-cache+tmpfs
environment:
# http://docs.github.com/en/actions/how-tos/deploy/configure-and-manage-deployments/control-deployments#using-environments-without-deployments
name: integration
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cre-system-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ on:

jobs:
define-test-matrix:
runs-on: runs-on=${{ github.run_id }}/cpu=8/ram=32/family=m6i+m5.*/spot=false/image=ubuntu24-full-x64/extras=s3-cache+tmpfs
runs-on: runs-on=${{ github.run_id }}/cpu=16/ram=128/family=r6i.*/spot=false/image=ubuntu24-full-x64/extras=s3-cache+tmpfs
outputs:
matrix: ${{ steps.define-matrix.outputs.matrix }}
permissions:
Expand Down Expand Up @@ -141,7 +141,7 @@ jobs:
needs: [define-test-matrix]
# we need a `test_id` and `run_attempt` here to stop runner stealing
# see: https://runs-on.com/guides/troubleshoot/#runner-stealing-and-matrix-jobs
runs-on: runs-on=${{ github.run_id }}-${{ matrix.tests.test_id }}-${{ github.run_attempt }}/cpu=16/ram=64/family=m6i+m5.*/spot=false/image=ubuntu24-full-x64/extras=s3-cache+tmpfs
runs-on: runs-on=${{ github.run_id }}-${{ matrix.tests.test_id }}-${{ github.run_attempt }}/cpu=16/ram=128/family=r6i.*/spot=false/image=ubuntu24-full-x64/extras=s3-cache+tmpfs
environment:
# http://docs.github.com/en/actions/how-tos/deploy/configure-and-manage-deployments/control-deployments#using-environments-without-deployments
name: integration
Expand Down
1 change: 1 addition & 0 deletions system-tests/tests/smoke/cre/cre_suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,7 @@ func runV2SuiteScenario(t *testing.T, topology string, scenario v2suite_config.S
}
}

// Remove after testing
func Test_CRE_V2_EVM_Write_LogTrigger(t *testing.T) {
t.Run("[v2] EVM Write - "+topology, func(t *testing.T) {
if parallelEnabled && fanoutEnabled {
Expand Down
Loading