From d7dd32bb3ea0b542c9b140e3fede7efe5775ce4f Mon Sep 17 00:00:00 2001 From: "andy.boot" Date: Mon, 22 Aug 2022 14:40:13 +0100 Subject: [PATCH 1/2] Upgrade rust: 2018->2021 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index f22a67d9..525ffcd9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "du-dust" description = "A more intuitive version of du" version = "0.8.1" authors = ["bootandy ", "nebkor "] -edition = "2018" +edition = "2021" readme = "README.md" documentation = "https://github.com/bootandy/dust" From 7ef150381070fb8e922b8514808fd53f9add4b74 Mon Sep 17 00:00:00 2001 From: "andy.boot" Date: Mon, 22 Aug 2022 14:57:52 +0100 Subject: [PATCH 2/2] CI: Only run against latest ubuntu builds Copying lsd's CI which only builds against latest ubuntu releases. --- .github/workflows/CICD.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/CICD.yml b/.github/workflows/CICD.yml index 2e72b460..37f08afb 100644 --- a/.github/workflows/CICD.yml +++ b/.github/workflows/CICD.yml @@ -84,11 +84,10 @@ jobs: - { os: ubuntu-latest , target: aarch64-unknown-linux-gnu , use-cross: use-cross } - { os: ubuntu-latest , target: aarch64-unknown-linux-musl , use-cross: use-cross } - { os: ubuntu-latest , target: arm-unknown-linux-gnueabihf , use-cross: use-cross } - - { os: ubuntu-20.04 , target: i686-unknown-linux-gnu , use-cross: use-cross } - - { os: ubuntu-20.04 , target: i686-unknown-linux-musl , use-cross: use-cross } - - { os: ubuntu-20.04 , target: x86_64-unknown-linux-gnu , use-cross: use-cross } - - { os: ubuntu-20.04 , target: x86_64-unknown-linux-musl , use-cross: use-cross } - - { os: ubuntu-18.04 , target: x86_64-unknown-linux-gnu , use-cross: use-cross } + - { os: ubuntu-latest , target: i686-unknown-linux-gnu , use-cross: use-cross } + - { os: ubuntu-latest , target: i686-unknown-linux-musl , use-cross: use-cross } + - { os: ubuntu-latest , target: x86_64-unknown-linux-gnu , use-cross: use-cross } + - { os: ubuntu-latest , target: x86_64-unknown-linux-musl , use-cross: use-cross } - { os: macos-latest , target: x86_64-apple-darwin } - { os: windows-latest , target: i686-pc-windows-gnu } - { os: windows-latest , target: i686-pc-windows-msvc }