mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 16:40:24 +08:00 
			
		
		
		
	Use minimal required version on CI and remove unnecessary services (#27429)
This commit is contained in:
		
							
								
								
									
										20
									
								
								.github/workflows/pull-db-tests.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										20
									
								
								.github/workflows/pull-db-tests.yml
									
									
									
									
										vendored
									
									
								
							@@ -17,7 +17,7 @@ jobs:
 | 
				
			|||||||
    runs-on: ubuntu-latest
 | 
					    runs-on: ubuntu-latest
 | 
				
			||||||
    services:
 | 
					    services:
 | 
				
			||||||
      pgsql:
 | 
					      pgsql:
 | 
				
			||||||
        image: postgres:16
 | 
					        image: postgres:12
 | 
				
			||||||
        env:
 | 
					        env:
 | 
				
			||||||
          POSTGRES_DB: test
 | 
					          POSTGRES_DB: test
 | 
				
			||||||
          POSTGRES_PASSWORD: postgres
 | 
					          POSTGRES_PASSWORD: postgres
 | 
				
			||||||
@@ -85,13 +85,6 @@ jobs:
 | 
				
			|||||||
    needs: files-changed
 | 
					    needs: files-changed
 | 
				
			||||||
    runs-on: ubuntu-latest
 | 
					    runs-on: ubuntu-latest
 | 
				
			||||||
    services:
 | 
					    services:
 | 
				
			||||||
      mysql:
 | 
					 | 
				
			||||||
        image: mysql:8.1
 | 
					 | 
				
			||||||
        env:
 | 
					 | 
				
			||||||
          MYSQL_ALLOW_EMPTY_PASSWORD: true
 | 
					 | 
				
			||||||
          MYSQL_DATABASE: test
 | 
					 | 
				
			||||||
        ports:
 | 
					 | 
				
			||||||
          - "3306:3306"
 | 
					 | 
				
			||||||
      elasticsearch:
 | 
					      elasticsearch:
 | 
				
			||||||
        image: elasticsearch:7.5.0
 | 
					        image: elasticsearch:7.5.0
 | 
				
			||||||
        env:
 | 
					        env:
 | 
				
			||||||
@@ -104,13 +97,6 @@ jobs:
 | 
				
			|||||||
          MEILI_ENV: development # disable auth
 | 
					          MEILI_ENV: development # disable auth
 | 
				
			||||||
        ports:
 | 
					        ports:
 | 
				
			||||||
          - "7700:7700"
 | 
					          - "7700:7700"
 | 
				
			||||||
      smtpimap:
 | 
					 | 
				
			||||||
        image: tabascoterrier/docker-imap-devel:latest
 | 
					 | 
				
			||||||
        ports:
 | 
					 | 
				
			||||||
          - "25:25"
 | 
					 | 
				
			||||||
          - "143:143"
 | 
					 | 
				
			||||||
          - "587:587"
 | 
					 | 
				
			||||||
          - "993:993"
 | 
					 | 
				
			||||||
      redis:
 | 
					      redis:
 | 
				
			||||||
        image: redis
 | 
					        image: redis
 | 
				
			||||||
        options: >- # wait until redis has started
 | 
					        options: >- # wait until redis has started
 | 
				
			||||||
@@ -158,7 +144,7 @@ jobs:
 | 
				
			|||||||
    runs-on: ubuntu-latest
 | 
					    runs-on: ubuntu-latest
 | 
				
			||||||
    services:
 | 
					    services:
 | 
				
			||||||
      mysql:
 | 
					      mysql:
 | 
				
			||||||
        image: mysql:8.1
 | 
					        image: mysql:8.0
 | 
				
			||||||
        env:
 | 
					        env:
 | 
				
			||||||
          MYSQL_ALLOW_EMPTY_PASSWORD: true
 | 
					          MYSQL_ALLOW_EMPTY_PASSWORD: true
 | 
				
			||||||
          MYSQL_DATABASE: testgitea
 | 
					          MYSQL_DATABASE: testgitea
 | 
				
			||||||
@@ -203,7 +189,7 @@ jobs:
 | 
				
			|||||||
    runs-on: ubuntu-latest
 | 
					    runs-on: ubuntu-latest
 | 
				
			||||||
    services:
 | 
					    services:
 | 
				
			||||||
      mssql:
 | 
					      mssql:
 | 
				
			||||||
        image: mcr.microsoft.com/mssql/server:2022-latest
 | 
					        image: mcr.microsoft.com/mssql/server:2017-latest
 | 
				
			||||||
        env:
 | 
					        env:
 | 
				
			||||||
          ACCEPT_EULA: Y
 | 
					          ACCEPT_EULA: Y
 | 
				
			||||||
          MSSQL_PID: Standard
 | 
					          MSSQL_PID: Standard
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user