mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-11-04 00:11:04 +00:00 
			
		
		
		
	chore(ci): ROLE forgejo-coding & forgejo-testing (part two)
When the CI vars.ROLE is forgejo-coding, it is assumed to be the
repository where collaborative coding happens,
i.e. https://codeberg.org/forgejo/forgejo
When the CI vars.ROLE is forgejo-testing, it is assumed that only codebase
testing is to be run and no other tests such as release build
integration, label constraints, backporting etc.
(cherry picked from commit 068558accd)
Conflicts:
	.forgejo/workflows/testing.yml
  e2e was in .forgejo/workflows/e2e.yml
  and some tests did not exist in v7.0
	
	
This commit is contained in:
		
					parent
					
						
							
								900307a3ed
							
						
					
				
			
			
				commit
				
					
						91ff7f3324
					
				
			
		
					 3 changed files with 7 additions and 7 deletions
				
			
		| 
						 | 
					@ -44,7 +44,7 @@ jobs:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  cascade:
 | 
					  cascade:
 | 
				
			||||||
    if: >
 | 
					    if: >
 | 
				
			||||||
      !startsWith(vars.ROLE, 'forgejo-') && (
 | 
					      vars.ROLE == 'forgejo-coding' && (
 | 
				
			||||||
        github.event_name == 'push' ||
 | 
					        github.event_name == 'push' ||
 | 
				
			||||||
        (
 | 
					        (
 | 
				
			||||||
          github.event.action == 'label_updated' && contains(github.event.pull_request.labels.*.name, 'run-end-to-end-tests')
 | 
					          github.event.action == 'label_updated' && contains(github.event.pull_request.labels.*.name, 'run-end-to-end-tests')
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -11,7 +11,7 @@ on:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
jobs:
 | 
					jobs:
 | 
				
			||||||
  test-e2e:
 | 
					  test-e2e:
 | 
				
			||||||
    if: ${{ !startsWith(vars.ROLE, 'forgejo-') }}
 | 
					    if: vars.ROLE == 'forgejo-coding' || vars.ROLE == 'forgejo-testing'
 | 
				
			||||||
    runs-on: docker
 | 
					    runs-on: docker
 | 
				
			||||||
    container:
 | 
					    container:
 | 
				
			||||||
      image: 'docker.io/node:20-bookworm'
 | 
					      image: 'docker.io/node:20-bookworm'
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -27,7 +27,7 @@ jobs:
 | 
				
			||||||
      - run: make deps-backend deps-tools
 | 
					      - run: make deps-backend deps-tools
 | 
				
			||||||
      - run: make --always-make -j$(nproc) lint-backend checks-backend # ensure the "go-licenses" make target runs
 | 
					      - run: make --always-make -j$(nproc) lint-backend checks-backend # ensure the "go-licenses" make target runs
 | 
				
			||||||
  frontend-checks:
 | 
					  frontend-checks:
 | 
				
			||||||
    if: ${{ !startsWith(vars.ROLE, 'forgejo-') }}
 | 
					    if: vars.ROLE == 'forgejo-coding' || vars.ROLE == 'forgejo-testing'
 | 
				
			||||||
    runs-on: docker
 | 
					    runs-on: docker
 | 
				
			||||||
    container:
 | 
					    container:
 | 
				
			||||||
      image: 'docker.io/node:20-bookworm'
 | 
					      image: 'docker.io/node:20-bookworm'
 | 
				
			||||||
| 
						 | 
					@ -39,7 +39,7 @@ jobs:
 | 
				
			||||||
      - run: make test-frontend
 | 
					      - run: make test-frontend
 | 
				
			||||||
      - run: make frontend
 | 
					      - run: make frontend
 | 
				
			||||||
  test-unit:
 | 
					  test-unit:
 | 
				
			||||||
    if: ${{ !startsWith(vars.ROLE, 'forgejo-') }}
 | 
					    if: vars.ROLE == 'forgejo-coding' || vars.ROLE == 'forgejo-testing'
 | 
				
			||||||
    runs-on: docker
 | 
					    runs-on: docker
 | 
				
			||||||
    needs: [backend-checks, frontend-checks]
 | 
					    needs: [backend-checks, frontend-checks]
 | 
				
			||||||
    container:
 | 
					    container:
 | 
				
			||||||
| 
						 | 
					@ -83,7 +83,7 @@ jobs:
 | 
				
			||||||
          RACE_ENABLED: 'true'
 | 
					          RACE_ENABLED: 'true'
 | 
				
			||||||
          TAGS: bindata
 | 
					          TAGS: bindata
 | 
				
			||||||
  test-mysql:
 | 
					  test-mysql:
 | 
				
			||||||
    if: ${{ !startsWith(vars.ROLE, 'forgejo-') }}
 | 
					    if: vars.ROLE == 'forgejo-coding' || vars.ROLE == 'forgejo-testing'
 | 
				
			||||||
    runs-on: docker
 | 
					    runs-on: docker
 | 
				
			||||||
    needs: [backend-checks, frontend-checks]
 | 
					    needs: [backend-checks, frontend-checks]
 | 
				
			||||||
    container:
 | 
					    container:
 | 
				
			||||||
| 
						 | 
					@ -129,7 +129,7 @@ jobs:
 | 
				
			||||||
          TAGS: bindata
 | 
					          TAGS: bindata
 | 
				
			||||||
          USE_REPO_TEST_DIR: 1
 | 
					          USE_REPO_TEST_DIR: 1
 | 
				
			||||||
  test-pgsql:
 | 
					  test-pgsql:
 | 
				
			||||||
    if: ${{ !startsWith(vars.ROLE, 'forgejo-') }}
 | 
					    if: vars.ROLE == 'forgejo-coding' || vars.ROLE == 'forgejo-testing'
 | 
				
			||||||
    runs-on: docker
 | 
					    runs-on: docker
 | 
				
			||||||
    needs: [backend-checks, frontend-checks]
 | 
					    needs: [backend-checks, frontend-checks]
 | 
				
			||||||
    container:
 | 
					    container:
 | 
				
			||||||
| 
						 | 
					@ -177,7 +177,7 @@ jobs:
 | 
				
			||||||
          RACE_ENABLED: true
 | 
					          RACE_ENABLED: true
 | 
				
			||||||
          USE_REPO_TEST_DIR: 1
 | 
					          USE_REPO_TEST_DIR: 1
 | 
				
			||||||
  test-sqlite:
 | 
					  test-sqlite:
 | 
				
			||||||
    if: ${{ !startsWith(vars.ROLE, 'forgejo-') }}
 | 
					    if: vars.ROLE == 'forgejo-coding' || vars.ROLE == 'forgejo-testing'
 | 
				
			||||||
    runs-on: docker
 | 
					    runs-on: docker
 | 
				
			||||||
    needs: [backend-checks, frontend-checks]
 | 
					    needs: [backend-checks, frontend-checks]
 | 
				
			||||||
    container:
 | 
					    container:
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue