Merge pull request #1071 from vector-im/chore/jme/revert-merge-queue-optimizations
Revert merge queue CI optimizations
This commit is contained in:
4
.github/workflows/build.yml
vendored
4
.github/workflows/build.yml
vendored
@@ -16,8 +16,8 @@ jobs:
|
||||
debug:
|
||||
name: Build APKs
|
||||
runs-on: ubuntu-latest
|
||||
# Skip for `main` and the merge queue if the branch is up to date with `develop`
|
||||
if: github.ref != 'refs/heads/main' && github.event.merge_group.base_ref != 'refs/heads/develop'
|
||||
# Skip for `main`
|
||||
if: github.ref != 'refs/heads/main'
|
||||
strategy:
|
||||
matrix:
|
||||
variant: [debug, release, nightly, samples]
|
||||
|
||||
2
.github/workflows/danger.yml
vendored
2
.github/workflows/danger.yml
vendored
@@ -5,8 +5,6 @@ on: [pull_request, merge_group]
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
# Don't run in the merge queue again if the branch is up to date with `develop`
|
||||
if: github.event.merge_group.base_ref != 'refs/heads/develop'
|
||||
name: Danger main check
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
@@ -8,8 +8,6 @@ on:
|
||||
jobs:
|
||||
validation:
|
||||
name: "Validation"
|
||||
# Don't run in the merge queue again if the branch is up to date with `develop`
|
||||
if: github.event.merge_group.base_ref != 'refs/heads/develop'
|
||||
runs-on: ubuntu-latest
|
||||
# No concurrency required, this is a prerequisite to other actions and should run every time.
|
||||
steps:
|
||||
|
||||
4
.github/workflows/quality.yml
vendored
4
.github/workflows/quality.yml
vendored
@@ -16,8 +16,6 @@ jobs:
|
||||
checkScript:
|
||||
name: Search for forbidden patterns
|
||||
runs-on: ubuntu-latest
|
||||
# Don't run in the merge queue again if the branch is up to date with `develop`
|
||||
if: github.event.merge_group.base_ref != 'refs/heads/develop'
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Run code quality check suite
|
||||
@@ -26,8 +24,6 @@ jobs:
|
||||
check:
|
||||
name: Project Check Suite
|
||||
runs-on: ubuntu-latest
|
||||
# Don't run in the merge queue again if the branch is up to date with `develop`
|
||||
if: github.event.merge_group.base_ref != 'refs/heads/develop'
|
||||
# Allow all jobs on main and develop. Just one per PR.
|
||||
concurrency:
|
||||
group: ${{ github.ref == 'refs/heads/main' && format('check-main-{0}', github.sha) || github.ref == 'refs/heads/develop' && format('check-develop-{0}', github.sha) || format('check-{0}', github.ref) }}
|
||||
|
||||
2
.github/workflows/sonar.yml
vendored
2
.github/workflows/sonar.yml
vendored
@@ -16,8 +16,6 @@ jobs:
|
||||
sonar:
|
||||
name: Project Check Suite
|
||||
runs-on: ubuntu-latest
|
||||
# Don't run in the merge queue again if the branch is up to date with `develop`
|
||||
if: github.event.merge_group.base_ref != 'refs/heads/develop'
|
||||
# Allow all jobs on main and develop. Just one per PR.
|
||||
concurrency:
|
||||
group: ${{ github.ref == 'refs/heads/main' && format('sonar-main-{0}', github.sha) || github.ref == 'refs/heads/develop' && format('sonar-develop-{0}', github.sha) || format('sonar-{0}', github.ref) }}
|
||||
|
||||
2
.github/workflows/tests.yml
vendored
2
.github/workflows/tests.yml
vendored
@@ -16,8 +16,6 @@ jobs:
|
||||
tests:
|
||||
name: Runs unit tests
|
||||
runs-on: ubuntu-latest
|
||||
# Don't run in the merge queue again if the branch is up to date with `develop`
|
||||
if: github.event.merge_group.base_ref != 'refs/heads/develop'
|
||||
|
||||
# Allow all jobs on main and develop. Just one per PR.
|
||||
concurrency:
|
||||
|
||||
2
.github/workflows/validate-lfs.yml
vendored
2
.github/workflows/validate-lfs.yml
vendored
@@ -5,8 +5,6 @@ on: [pull_request, merge_group]
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
# Don't run in the merge queue again if the branch is up to date with `develop`
|
||||
if: github.event.merge_group.base_ref != 'refs/heads/develop'
|
||||
name: Validate
|
||||
steps:
|
||||
- uses: nschloe/action-cached-lfs-checkout@v1.2.2
|
||||
|
||||
Reference in New Issue
Block a user