about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2022-12-07 12:17:52 +0000
committerbors <bors@rust-lang.org>2022-12-07 12:17:52 +0000
commit911864df46dc5d4fae2f809126f4e6f090434e8f (patch)
tree4d2bdc07702e95f6bd99e0e77dd2ebc272229685
parentd18f31efa32c4938392c5840486498823c878d31 (diff)
parent1c03cd3fa34d6b317f33a2fd40e3d222a4d89a85 (diff)
downloadrust-911864df46dc5d4fae2f809126f4e6f090434e8f.tar.gz
rust-911864df46dc5d4fae2f809126f4e6f090434e8f.zip
Auto merge of #10046 - flip1995:ci-i386, r=xFrednet
CI: Don't install no longer needed dependencies on i386

changelog: none

closes #10040
-rw-r--r--.github/workflows/clippy.yml2
-rw-r--r--.github/workflows/clippy_bors.yml25
2 files changed, 10 insertions, 17 deletions
diff --git a/.github/workflows/clippy.yml b/.github/workflows/clippy.yml
index a0fb23e7664..b9921301197 100644
--- a/.github/workflows/clippy.yml
+++ b/.github/workflows/clippy.yml
@@ -30,7 +30,7 @@ env:
 jobs:
   base:
     # NOTE: If you modify this job, make sure you copy the changes to clippy_bors.yml
-    runs-on: ubuntu-20.04
+    runs-on: ubuntu-latest
 
     steps:
     # Setup
diff --git a/.github/workflows/clippy_bors.yml b/.github/workflows/clippy_bors.yml
index 03e42e06744..1bc457a9479 100644
--- a/.github/workflows/clippy_bors.yml
+++ b/.github/workflows/clippy_bors.yml
@@ -19,7 +19,7 @@ defaults:
 
 jobs:
   changelog:
-    runs-on: ubuntu-20.04
+    runs-on: ubuntu-latest
 
     steps:
     - uses: rust-lang/simpleinfra/github-actions/cancel-outdated-builds@master
@@ -53,12 +53,12 @@ jobs:
     needs: changelog
     strategy:
       matrix:
-        os: [ubuntu-20.04, windows-latest, macos-latest]
+        os: [ubuntu-latest, windows-latest, macos-latest]
         host: [x86_64-unknown-linux-gnu, i686-unknown-linux-gnu, x86_64-apple-darwin, x86_64-pc-windows-msvc]
         exclude:
-        - os: ubuntu-20.04
+        - os: ubuntu-latest
           host: x86_64-apple-darwin
-        - os: ubuntu-20.04
+        - os: ubuntu-latest
           host: x86_64-pc-windows-msvc
         - os: macos-latest
           host: x86_64-unknown-linux-gnu
@@ -82,13 +82,6 @@ jobs:
       with:
         github_token: "${{ secrets.github_token }}"
 
-    - name: Install dependencies (Linux-i686)
-      run: |
-        sudo dpkg --add-architecture i386
-        sudo apt-get update
-        sudo apt-get install gcc-multilib libssl-dev:i386 libgit2-dev:i386
-      if: matrix.host == 'i686-unknown-linux-gnu'
-
     - name: Checkout
       uses: actions/checkout@v3.0.2
 
@@ -147,7 +140,7 @@ jobs:
 
   metadata_collection:
     needs: changelog
-    runs-on: ubuntu-20.04
+    runs-on: ubuntu-latest
 
     steps:
      # Setup
@@ -166,7 +159,7 @@ jobs:
 
   integration_build:
     needs: changelog
-    runs-on: ubuntu-20.04
+    runs-on: ubuntu-latest
 
     steps:
     # Setup
@@ -224,7 +217,7 @@ jobs:
         - 'rust-lang-nursery/failure'
         - 'rust-lang/log'
 
-    runs-on: ubuntu-20.04
+    runs-on: ubuntu-latest
 
     steps:
     # Setup
@@ -265,7 +258,7 @@ jobs:
   end-success:
     name: bors test finished
     if: github.event.pusher.name == 'bors' && success()
-    runs-on: ubuntu-20.04
+    runs-on: ubuntu-latest
     needs: [changelog, base, metadata_collection, integration_build, integration]
 
     steps:
@@ -275,7 +268,7 @@ jobs:
   end-failure:
     name: bors test finished
     if: github.event.pusher.name == 'bors' && (failure() || cancelled())
-    runs-on: ubuntu-20.04
+    runs-on: ubuntu-latest
     needs: [changelog, base, metadata_collection, integration_build, integration]
 
     steps: