Skip to content

Commit

Permalink
makesure fails when wget is not available #22
Browse files Browse the repository at this point in the history
  • Loading branch information
xonixx committed Dec 13, 2023
1 parent 382e522 commit fd215ca
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"
Expand All @@ -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"
6 changes: 3 additions & 3 deletions Makesurefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit fd215ca

Please sign in to comment.