Browse Source

Merge pull request #1071 from vector-im/chore/jme/revert-merge-queue-optimizations

Revert merge queue CI optimizations
pull/1084/head
Benoit Marty 1 year ago committed by GitHub
parent
commit
cd1179014e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      .github/workflows/build.yml
  2. 2
      .github/workflows/danger.yml
  3. 2
      .github/workflows/gradle-wrapper-validation.yml
  4. 4
      .github/workflows/quality.yml
  5. 2
      .github/workflows/sonar.yml
  6. 2
      .github/workflows/tests.yml
  7. 2
      .github/workflows/validate-lfs.yml

4
.github/workflows/build.yml

@ -16,8 +16,8 @@ jobs: @@ -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

@ -5,8 +5,6 @@ on: [pull_request, merge_group] @@ -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

2
.github/workflows/gradle-wrapper-validation.yml

@ -8,8 +8,6 @@ on: @@ -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

@ -16,8 +16,6 @@ jobs: @@ -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: @@ -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

@ -16,8 +16,6 @@ jobs: @@ -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

@ -16,8 +16,6 @@ jobs: @@ -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

@ -5,8 +5,6 @@ on: [pull_request, merge_group] @@ -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

Loading…
Cancel
Save