summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorMartin Nordholts <enselic@gmail.com>2021-02-17 15:07:09 +0100
committerDavid Peter <sharkdp@users.noreply.github.com>2021-02-18 07:59:10 +0100
commit94fd481f36166eb2c54edea7c78aa5396f023972 (patch)
tree665ff512b448c875783029ca4b9bffe628ec7f1b /.github
parent94496df3b01dc874071b7e23fe52bd0aec332b74 (diff)
CICD: Build: Remove unused ${{ matrix.job.cargo-options }} expansions
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/CICD.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/CICD.yml b/.github/workflows/CICD.yml
index c16362f1..7e854727 100644
--- a/.github/workflows/CICD.yml
+++ b/.github/workflows/CICD.yml
@@ -142,7 +142,7 @@ jobs:
with:
use-cross: ${{ matrix.job.use-cross }}
command: build
- args: --release --target=${{ matrix.job.target }} ${{ matrix.job.cargo-options }}
+ args: --release --target=${{ matrix.job.target }}
- name: Strip release bin
id: strip
shell: bash
@@ -183,19 +183,19 @@ jobs:
with:
use-cross: ${{ matrix.job.use-cross }}
command: test
- args: --target=${{ matrix.job.target }} ${{ steps.vars.outputs.CARGO_TEST_OPTIONS}} ${{ matrix.job.cargo-options }}
+ args: --target=${{ matrix.job.target }} ${{ steps.vars.outputs.CARGO_TEST_OPTIONS}}
- name: bat test run
uses: actions-rs/cargo@v1
with:
use-cross: ${{ matrix.job.use-cross }}
command: run
- args: --target=${{ matrix.job.target }} ${{ matrix.job.cargo-options }} -- --paging=never --color=always --theme=ansi Cargo.toml src/config.rs
+ args: --target=${{ matrix.job.target }} -- --paging=never --color=always --theme=ansi Cargo.toml src/config.rs
- name: bat diagnostics output
uses: actions-rs/cargo@v1
with:
use-cross: ${{ matrix.job.use-cross }}
command: run
- args: --target=${{ matrix.job.target }} ${{ matrix.job.cargo-options }} -- --paging=never --color=always --theme=ansi Cargo.toml src/config.rs --diagnostic
+ args: --target=${{ matrix.job.target }} -- --paging=never --color=always --theme=ansi Cargo.toml src/config.rs --diagnostic
- name: Check features regex-onig
uses: actions-rs/cargo@v1
with: