Skip to content

Commit

Permalink
Enabled globstar option.
Browse files Browse the repository at this point in the history
  • Loading branch information
Paebbels committed Dec 14, 2024
1 parent baffe53 commit 7b62203
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 14 deletions.
29 changes: 15 additions & 14 deletions .github/workflows/ArtifactsUpload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ on:
workflow_dispatch:

jobs:
Build-1:
Build:
name: ${{ matrix.os.icon }} Build 1 on ${{ matrix.os.name }} - Upload artifact
runs-on: ${{ matrix.os.image }}
strategy:
Expand Down Expand Up @@ -215,7 +215,7 @@ jobs:
name: ${{ matrix.os.icon }} Verify artifact content on ${{ matrix.os.name }}
runs-on: ${{ matrix.os.image }}
needs:
- Build-1
- Build
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -296,7 +296,7 @@ jobs:
name: ${{ matrix.os.icon }} Single file ${{ matrix.task.action }} on ${{ matrix.os.name }}
runs-on: ${{ matrix.os.image }}
needs:
- Build-1
- Build
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -335,7 +335,7 @@ jobs:
name: ${{ matrix.os.icon }} Inspect single file in directory ${{ matrix.task.action }} on ${{ matrix.os.name }}
runs-on: ${{ matrix.os.image }}
needs:
- Build-1
- Build
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -382,7 +382,7 @@ jobs:
name: ${{ matrix.os.icon }} Inspect double file in directory ${{ matrix.task.action }} on ${{ matrix.os.name }}
runs-on: ${{ matrix.os.image }}
needs:
- Build-1
- Build
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -431,7 +431,7 @@ jobs:
name: ${{ matrix.os.icon }} Inspect triple file in directory ${{ matrix.task.action }} on ${{ matrix.os.name }}
runs-on: ${{ matrix.os.image }}
needs:
- Build-1
- Build
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -482,7 +482,7 @@ jobs:
name: ${{ matrix.os.icon }} Inspect double file in deep directory ${{ matrix.task.action }} on ${{ matrix.os.name }}
runs-on: ${{ matrix.os.image }}
needs:
- Build-1
- Build
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -531,7 +531,7 @@ jobs:
name: ${{ matrix.os.icon }} Inspect single directory ${{ matrix.task.action }} on ${{ matrix.os.name }}
runs-on: ${{ matrix.os.image }}
needs:
- Build-1
- Build
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -580,7 +580,7 @@ jobs:
name: ${{ matrix.os.icon }} Inspect double directory ${{ matrix.task.action }} on ${{ matrix.os.name }}
runs-on: ${{ matrix.os.image }}
needs:
- Build-1
- Build
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -637,7 +637,7 @@ jobs:
name: ${{ matrix.os.icon }} Unpredictable Wildcard ${{ matrix.task.action }} on ${{ matrix.os.name }}
runs-on: ${{ matrix.os.image }}
needs:
- Build-1
- Build
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -671,27 +671,28 @@ jobs:
if: matrix.task.name == 'inspect'
with:
files: |
common.py
lib/gui/main.py
lib/gui/dialog.py
- name: 📋 Verify extracted tarball content
uses: ./.github/actions/check-directory-content
if: matrix.task.name == 'verify'
with:
files: |
common.py
lib/gui/main.py
lib/gui/dialog.py
Verify-9:
name: Verify lib directory
runs-on: ubuntu-24.04
needs:
- Build-1
- Build
strategy:
fail-fast: false
matrix:
os:
- {'icon': '🐧', 'name': 'Ubuntu', 'image': 'ubuntu-24.04'}
task:
# - {'name': 'inspect', 'artifact': 'github', 'action': 'actions/upload-artifact'}
- {'name': 'verify' , 'artifact': 'pyTooling', 'action': 'pyTooling/upload-artifact'}

steps:
Expand Down
1 change: 1 addition & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ runs:
shell: bash
run: |
set +e
shopt -s globstar
ANSI_LIGHT_RED=$'\x1b[91m'
ANSI_LIGHT_GREEN=$'\x1b[92m'
Expand Down

0 comments on commit 7b62203

Please sign in to comment.