summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarco Ieni <11428655+MarcoIeni@users.noreply.github.com>2022-11-27 18:40:07 +0100
committerGitHub <noreply@github.com>2022-11-27 12:40:07 -0500
commitd6db040421a48bdb266cb2ca278a3511607c1d03 (patch)
treeef44c1e317427e2020cd9302bf2d6e9514bc6c28
parentafa7a1a38dc13ea480653938e6c54c933396515c (diff)
ci: improve formatting (#1238)
* ci: improve formatting * ci.yaml: apply new formatting
-rw-r--r--.github/workflows/cd.yml28
-rw-r--r--.github/workflows/ci.yml28
2 files changed, 42 insertions, 14 deletions
diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml
index b5c8b040..5ddafcba 100644
--- a/.github/workflows/cd.yml
+++ b/.github/workflows/cd.yml
@@ -12,13 +12,27 @@ jobs:
strategy:
matrix:
job:
- - { os: macos-latest, target: x86_64-apple-darwin, use-cross: false }
- - { os: windows-latest, target: x86_64-pc-windows-msvc, use-cross: false }
- - { os: ubuntu-latest , target: x86_64-unknown-linux-gnu, use-cross: false }
- - { os: ubuntu-latest, target: x86_64-unknown-linux-musl, use-cross: true }
- - { os: ubuntu-latest, target: i686-unknown-linux-gnu, use-cross: true }
- - { os: ubuntu-latest, target: arm-unknown-linux-gnueabihf, use-cross: true }
- - { os: ubuntu-latest, target: aarch64-unknown-linux-gnu, use-cross: true }
+ - os: macos-latest
+ target: x86_64-apple-darwin
+ use-cross: false
+ - os: windows-latest
+ target: x86_64-pc-windows-msvc
+ use-cross: false
+ - os: ubuntu-latest
+ target: x86_64-unknown-linux-gnu
+ use-cross: false
+ - os: ubuntu-latest
+ target: x86_64-unknown-linux-musl
+ use-cross: true
+ - os: ubuntu-latest
+ target: i686-unknown-linux-gnu
+ use-cross: true
+ - os: ubuntu-latest
+ target: arm-unknown-linux-gnueabihf
+ use-cross: true
+ - os: ubuntu-latest
+ target: aarch64-unknown-linux-gnu
+ use-cross: true
steps:
- name: Installing Rust toolchain
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index c78ae786..f1824bad 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -14,13 +14,27 @@ jobs:
strategy:
matrix:
job:
- - { os: macos-latest, target: x86_64-apple-darwin, use-cross: false }
- - { os: windows-latest, target: x86_64-pc-windows-msvc, use-cross: false }
- - { os: ubuntu-latest , target: x86_64-unknown-linux-gnu, use-cross: false }
- - { os: ubuntu-latest, target: x86_64-unknown-linux-musl, use-cross: true }
- - { os: ubuntu-latest, target: i686-unknown-linux-gnu, use-cross: true }
- - { os: ubuntu-latest, target: arm-unknown-linux-gnueabihf, use-cross: true }
- - { os: ubuntu-latest, target: aarch64-unknown-linux-gnu, use-cross: true }
+ - os: macos-latest
+ target: x86_64-apple-darwin
+ use-cross: false
+ - os: windows-latest
+ target: x86_64-pc-windows-msvc
+ use-cross: false
+ - os: ubuntu-latest
+ target: x86_64-unknown-linux-gnu
+ use-cross: false
+ - os: ubuntu-latest
+ target: x86_64-unknown-linux-musl
+ use-cross: true
+ - os: ubuntu-latest
+ target: i686-unknown-linux-gnu
+ use-cross: true
+ - os: ubuntu-latest
+ target: arm-unknown-linux-gnueabihf
+ use-cross: true
+ - os: ubuntu-latest
+ target: aarch64-unknown-linux-gnu
+ use-cross: true
steps:
- name: Checkout repository
uses: actions/checkout@v2