Skip to content

Commit

Permalink
.github: Always run all tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikhail Krichanov committed Jul 2, 2024
1 parent 1d99eb8 commit cd47b6a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/build_nolto.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -521,6 +521,7 @@ jobs:
fileName: "winpe_IA32.iso"

- name: Run TestConsole
if: always()
run: |
IFS=', ' read -r -a TARGETS <<< "$TARGETS"
IFS=', ' read -r -a ARCHS <<< "$ARCHS"
Expand All @@ -537,6 +538,7 @@ jobs:
TOOLCHAIN: ${{ matrix.package.toolchain }}

- name: Run TestLinux
if: always()
run: |
IFS=', ' read -r -a TARGETS <<< "$TARGETS"
IFS=', ' read -r -a ARCHS <<< "$ARCHS"
Expand All @@ -553,6 +555,7 @@ jobs:
TOOLCHAIN: ${{ matrix.package.toolchain }}

- name: Run Windows PE
if: always()
run: |
IFS=', ' read -r -a TARGETS <<< "$TARGETS"
IFS=', ' read -r -a ARCHS <<< "$ARCHS"
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/build_x86.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -624,6 +624,7 @@ jobs:
fileName: "winpe_IA32.iso"

- name: Run TestConsole
if: always()
run: |
IFS=', ' read -r -a TARGETS <<< "$TARGETS"
IFS=', ' read -r -a ARCHS <<< "$ARCHS"
Expand All @@ -640,6 +641,7 @@ jobs:
TOOLCHAIN: ${{ matrix.package.toolchain }}

- name: Run TestLinux
if: always()
run: |
IFS=', ' read -r -a TARGETS <<< "$TARGETS"
IFS=', ' read -r -a ARCHS <<< "$ARCHS"
Expand All @@ -656,6 +658,7 @@ jobs:
TOOLCHAIN: ${{ matrix.package.toolchain }}

- name: Run Windows PE
if: always()
run: |
IFS=', ' read -r -a TARGETS <<< "$TARGETS"
IFS=', ' read -r -a ARCHS <<< "$ARCHS"
Expand Down

0 comments on commit cd47b6a

Please sign in to comment.