mirror of
				https://github.com/meilisearch/meilisearch.git
				synced 2025-10-30 15:36:28 +00:00 
			
		
		
		
	Merge #1307
1307: change ubuntu version r=MarinPostma a=MarinPostma Change the CI ubuntu version from `latest` to `18.04` because `latest` uses a too recent version of glibc, preventing meilisearch from running on the debian version of the DO image Co-authored-by: mpostma <postma.marin@protonmail.com>
This commit is contained in:
		
							
								
								
									
										2
									
								
								.github/workflows/coverage.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								.github/workflows/coverage.yml
									
									
									
									
										vendored
									
									
								
							| @@ -7,7 +7,7 @@ name: Execute code coverage | ||||
|  | ||||
| jobs: | ||||
|   nightly-coverage: | ||||
|     runs-on: ubuntu-latest | ||||
|     runs-on: ubuntu-18.04 | ||||
|     steps: | ||||
|       - uses: actions/checkout@v2 | ||||
|       - uses: actions-rs/toolchain@v1 | ||||
|   | ||||
							
								
								
									
										4
									
								
								.github/workflows/publish-binaries.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										4
									
								
								.github/workflows/publish-binaries.yml
									
									
									
									
										vendored
									
									
								
							| @@ -10,9 +10,9 @@ jobs: | ||||
|     runs-on: ${{ matrix.os }} | ||||
|     strategy: | ||||
|       matrix: | ||||
|         os: [ubuntu-latest, macos-latest, windows-latest] | ||||
|         os: [ubuntu-18.04, macos-latest, windows-latest] | ||||
|         include: | ||||
|           - os: ubuntu-latest | ||||
|           - os: ubuntu-18.04 | ||||
|             artifact_name: meilisearch | ||||
|             asset_name: meilisearch-linux-amd64 | ||||
|           - os: macos-latest | ||||
|   | ||||
							
								
								
									
										4
									
								
								.github/workflows/publish-deb-brew-pkg.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										4
									
								
								.github/workflows/publish-deb-brew-pkg.yml
									
									
									
									
										vendored
									
									
								
							| @@ -7,7 +7,7 @@ on: | ||||
| jobs: | ||||
|   debian: | ||||
|     name: Publish debian packagge | ||||
|     runs-on: ubuntu-latest | ||||
|     runs-on: ubuntu-18.04 | ||||
|     steps: | ||||
|     - uses: hecrj/setup-rust-action@master | ||||
|       with: | ||||
| @@ -29,7 +29,7 @@ jobs: | ||||
|  | ||||
|   homebrew: | ||||
|     name: Bump Homebrew formula | ||||
|     runs-on: ubuntu-latest | ||||
|     runs-on: ubuntu-18.04 | ||||
|     steps: | ||||
|       - name: Create PR to Homebrew | ||||
|         uses: mislav/bump-homebrew-formula-action@v1 | ||||
|   | ||||
							
								
								
									
										2
									
								
								.github/workflows/publish-docker-latest.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								.github/workflows/publish-docker-latest.yml
									
									
									
									
										vendored
									
									
								
							| @@ -7,7 +7,7 @@ name: Publish latest image to Docker Hub | ||||
|  | ||||
| jobs: | ||||
|   build: | ||||
|     runs-on: ubuntu-latest | ||||
|     runs-on: ubuntu-18.04 | ||||
|     steps: | ||||
|       - uses: actions/checkout@v2 | ||||
|       - name: Check if current release is latest | ||||
|   | ||||
							
								
								
									
										2
									
								
								.github/workflows/publish-docker-tag.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								.github/workflows/publish-docker-tag.yml
									
									
									
									
										vendored
									
									
								
							| @@ -8,7 +8,7 @@ name: Publish tagged image to Docker Hub | ||||
|  | ||||
| jobs: | ||||
|   build: | ||||
|     runs-on: ubuntu-latest | ||||
|     runs-on: ubuntu-18.04 | ||||
|     steps: | ||||
|       - uses: actions/checkout@v1 | ||||
|       - name: Publish to Registry | ||||
|   | ||||
							
								
								
									
										10
									
								
								.github/workflows/test.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										10
									
								
								.github/workflows/test.yml
									
									
									
									
										vendored
									
									
								
							| @@ -16,7 +16,7 @@ jobs: | ||||
|     runs-on: ${{ matrix.os }} | ||||
|     strategy: | ||||
|       matrix: | ||||
|         os: [ubuntu-latest, macos-latest] | ||||
|         os: [ubuntu-18.04, macos-latest] | ||||
|     steps: | ||||
|     - uses: actions/checkout@v1 | ||||
|     - uses: actions-rs/toolchain@v1 | ||||
| @@ -38,7 +38,7 @@ jobs: | ||||
|  | ||||
|   build-image: | ||||
|     name: Test the build of Docker image | ||||
|     runs-on: ubuntu-latest | ||||
|     runs-on: ubuntu-18.04 | ||||
|     steps: | ||||
|     - uses: actions/checkout@v1 | ||||
|     - run: docker build . --file Dockerfile -t meilisearch | ||||
| @@ -49,7 +49,7 @@ jobs: | ||||
|     name: create prerelease | ||||
|     needs: [check, build-image] | ||||
|     if: ${{ contains(github.ref, 'release-') && github.event_name == 'push' }} | ||||
|     runs-on: ubuntu-latest | ||||
|     runs-on: ubuntu-18.04 | ||||
|     steps: | ||||
|       - name: Checkout code | ||||
|         uses: actions/checkout@v2 | ||||
| @@ -76,13 +76,13 @@ jobs: | ||||
|     name: create release | ||||
|     needs: [check, build-image] | ||||
|     if:  ${{ contains(github.ref, 'tags/v') }} | ||||
|     runs-on: ubuntu-latest | ||||
|     runs-on: ubuntu-18.04 | ||||
|     steps: | ||||
|       - name: Checkout code | ||||
|         uses: actions/checkout@v2 | ||||
|       - name: Get version number | ||||
|         id: version-number | ||||
|         run: echo "##[set-output name=number;]$(echo ${{ github.ref }} | sed 's/.*\(v.*\)/\1/')"  | ||||
|         run: echo "##[set-output name=number;]$(echo ${{ github.ref }} | sed 's/.*\(v.*\)/\1/')" | ||||
|       - name: Create Release | ||||
|         id: create_release | ||||
|         uses: actions/create-release@v1 | ||||
|   | ||||
		Reference in New Issue
	
	Block a user