From fd498b2f15ad0db2a1e3fd81126f6d6deb4bd5e9 Mon Sep 17 00:00:00 2001 From: Martin Robinson Date: Mon, 15 Jan 2024 09:59:14 +0100 Subject: [PATCH] Don't run the CI with nightly This isn't as important any longer, now that Servo is using Rust stable. Additionally, surfman no longer compiles with version of Rust nightly that we were previously using. The motivation here is to fix the CI and to move toward having a MSRV. --- .github/workflows/rust.yml | 25 +------------------------ 1 file changed, 1 insertion(+), 24 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 764ffacf..647f9d02 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -18,29 +18,10 @@ jobs: fail-fast: false matrix: os: [macos-latest, ubuntu-22.04, windows-latest] - rust: [nightly, stable] + rust: [stable] features: ["", "--features 'chains sm-winit sm-raw-window-handle'"] target: ["default"] include: - # rust nightly - - os: ubuntu-22.04 - features: "--features 'chains sm-wayland-default'" - rust: nightly-2023-02-01 - target: "default" - - os: ubuntu-22.04 - target: "arm-linux-androideabi" - rust: nightly-2023-02-01 - - os: windows-latest - features: "--features sm-angle-builtin" - rust: nightly-2023-02-01 - target: "default" - - os: windows-latest - features: "--features 'chains sm-no-wgl sm-angle-builtin'" - rust: nightly-2023-02-01 - target: "default" - - os: windows-latest - target: "aarch64-pc-windows-msvc" - rust: nightly-2023-02-01 # rust stable - os: ubuntu-22.04 features: "--features sm-wayland-default" @@ -60,10 +41,6 @@ jobs: - os: windows-latest target: "aarch64-pc-windows-msvc" rust: stable - # nightly only - - os: windows-latest - target: "aarch64-uwp-windows-msvc" - rust: nightly-2023-02-01 steps: - uses: actions/checkout@v4 - name: Install deps on linux