From a873d95ddd80bbc364acba93452b5668a9706ca3 Mon Sep 17 00:00:00 2001 From: Gregory Shimansky Date: Tue, 25 Jun 2024 19:48:35 +0000 Subject: [PATCH 1/2] Enabled simple build&test workflow, disabled old Integration Tests workflow because it fails to run. Signed-off-by: Gregory Shimansky --- .github/workflows/build-test.yml | 8 ++++++++ .github/workflows/integration-tests.yml | 17 +++++++++-------- 2 files changed, 17 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index 8c9bcca7cf28..767abd066b75 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -3,6 +3,14 @@ run-name: ${{ inputs.run_name }} on: workflow_dispatch: + pull_request: + branches: + - main + # You can name your branch dev-foo to get CI runs. + - 'dev-**' + push: + branches: + - main jobs: pre-commit: diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index a5757b7f502b..aaed743f050e 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -9,14 +9,15 @@ name: Integration Tests on: workflow_dispatch: - pull_request: - # You can name your branch dev-foo to get CI runs. - branches: [main, 'dev-**'] - merge_group: - branches: [main, 'dev-**'] - types: [checks_requested] - push: - branches: [main] + # Disabled automatic triggers because tests in this workflow fail to run. + # pull_request: + # # You can name your branch dev-foo to get CI runs. + # branches: [main, 'dev-**'] + # merge_group: + # branches: [main, 'dev-**'] + # types: [checks_requested] + # push: + # branches: [main] concurrency: group: ${{ github.ref }} cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} From caa569e65d29c88c3621886dd63f55ce7f258375 Mon Sep 17 00:00:00 2001 From: Gregory Shimansky Date: Tue, 25 Jun 2024 20:05:01 +0000 Subject: [PATCH 2/2] Fixed integration-tests source file to disable triggers Signed-off-by: Gregory Shimansky --- .github/workflows/integration-tests.yml | 18 +++++++++--------- .github/workflows/integration-tests.yml.in | 18 ++++++++++-------- 2 files changed, 19 insertions(+), 17 deletions(-) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index aaed743f050e..df15c72b0a5d 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -9,15 +9,15 @@ name: Integration Tests on: workflow_dispatch: - # Disabled automatic triggers because tests in this workflow fail to run. - # pull_request: - # # You can name your branch dev-foo to get CI runs. - # branches: [main, 'dev-**'] - # merge_group: - # branches: [main, 'dev-**'] - # types: [checks_requested] - # push: - # branches: [main] +# Disabled automatic triggers because tests in this workflow fail to run. +# pull_request: +# # You can name your branch dev-foo to get CI runs. +# branches: [main, 'dev-**'] +# merge_group: +# branches: [main, 'dev-**'] +# types: [checks_requested] +# push: +# branches: [main] concurrency: group: ${{ github.ref }} cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} diff --git a/.github/workflows/integration-tests.yml.in b/.github/workflows/integration-tests.yml.in index 79622916082f..3d9b3faa9574 100644 --- a/.github/workflows/integration-tests.yml.in +++ b/.github/workflows/integration-tests.yml.in @@ -8,14 +8,16 @@ name: Integration Tests on: workflow_dispatch: - pull_request: - # You can name your branch dev-foo to get CI runs. - branches: [main, 'dev-**'] - merge_group: - branches: [main, 'dev-**'] - types: [checks_requested] - push: - branches: [main] + +# Disabled automatic triggers because tests in this workflow fail to run. +# pull_request: +# # You can name your branch dev-foo to get CI runs. +# branches: [main, 'dev-**'] +# merge_group: +# branches: [main, 'dev-**'] +# types: [checks_requested] +# push: +# branches: [main] concurrency: group: ${{ github.ref }}