From fd215cac203bf13554c40b7e05a94ba75688df20 Mon Sep 17 00:00:00 2001 From: xonix Date: Wed, 13 Dec 2023 14:47:13 +0200 Subject: [PATCH] makesure fails when wget is not available #22 --- .github/workflows/run-tests.yml | 12 ++++++------ Makesurefile | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index dd16ced..20c584a 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -17,11 +17,11 @@ jobs: id: cache-soft with: path: soft - key: ${{ matrix.os }}-${{ hashFiles('Makesurefile') }}-soft--all-2 + key: ${{ matrix.os }}-${{ hashFiles('Makesurefile') }}-soft--all-3 - name: "run tests" run: | - ./makesure + ./makesure testall macos: name: "macOS" @@ -36,11 +36,11 @@ jobs: id: cache-soft with: path: soft - key: ${{ matrix.os }}-soft--macos + key: ${{ matrix.os }}-soft--macos-1 - name: "run tests" run: | - ./makesure tested_by_default_awk + ./makesure win: name: "Win" @@ -55,8 +55,8 @@ jobs: id: cache-soft with: path: soft - key: ${{ matrix.os }}-soft--win + key: ${{ matrix.os }}-soft--win-1 - name: "run tests" run: | - & bash -e -c "./makesure tested_by_default_awk" + & bash -e -c "./makesure" diff --git a/Makesurefile b/Makesurefile index 20dcd5c..5567999 100644 --- a/Makesurefile +++ b/Makesurefile @@ -46,10 +46,10 @@ fi @goal default -@doc 'same as tested' -@depends_on tested +@doc 'same as tested_by_default_awk' +@depends_on tested_by_default_awk -@goal tested +@goal testall @doc 'runs test suite' @depends_on tested_by_default_awk @depends_on tested_by_bwk