Skip to content

Commit

Permalink
fixed unpacking
Browse files Browse the repository at this point in the history
  • Loading branch information
jraczek-acc committed Jan 17, 2025
1 parent ccbee0e commit b05a92a
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ jobs:
local-identifier: 'random'
- name: Publish Test Results
uses: EnricoMi/publish-unit-test-result-action/linux@v2
if: true
if: false
with:
files: |
/home/runner/work/**/TestResults/*.xml
Expand All @@ -225,8 +225,8 @@ jobs:
- uses: actions/download-artifact@v4
with:
name: OcarambaBuild
- shell: pwsh
run: ."C:\Program Files\7-Zip\7z.exe" x "20210112_Testing.7z"
- shell: cmd
run: 7z x "OcarambaBuild.7z"
- run: ./scripts/ExecutingTestsOnWindowsGithubActions1.ps1
- name: Publish Test Results
uses: EnricoMi/publish-unit-test-result-action/windows@v2
Expand All @@ -253,8 +253,8 @@ jobs:
- uses: actions/download-artifact@v4
with:
name: OcarambaBuild
- shell: pwsh
run: ."C:\Program Files\7-Zip\7z.exe" x "20210112_Testing.7z"
- shell: cmd
run: 7z x "OcarambaBuild.7z"
- run: ./scripts/ExecutingTestsOnWindowsGithubActions2.ps1
- name: Publish Test Results
uses: EnricoMi/publish-unit-test-result-action/windows@v2
Expand All @@ -275,8 +275,8 @@ jobs:
- uses: actions/download-artifact@v4
with:
name: OcarambaBuild
- shell: pwsh
run: ."C:\Program Files\7-Zip\7z.exe" x "20210112_Testing.7z"
- shell: cmd
run: 7z x "OcarambaBuild.7z"
- run: ./scripts/ExecutingTestsOnWindowsGithubActions3.ps1
- name: Publish Test Results
uses: EnricoMi/publish-unit-test-result-action/windows@v2
Expand All @@ -296,8 +296,8 @@ jobs:
- uses: actions/download-artifact@v4
with:
name: OcarambaBuild
- shell: pwsh
run: ."C:\Program Files\7-Zip\7z.exe" x "20210112_Testing.7z"
- shell: cmd
run: 7z x "OcarambaBuild.7z"
- run: ./scripts/ExecutingTestsOnWindowsGithubActions4.ps1
env:
MAPPED_ENV_BROWSERSTACKKEY: ${{ secrets.BROWSERSTACKKEY }}
Expand All @@ -324,12 +324,12 @@ jobs:
- uses: actions/download-artifact@v4
with:
name: OcarambaBuild
- shell: pwsh
run: ."C:\Program Files\7-Zip\7z.exe" x "20210112_Testing.7z"
- shell: cmd
run: 7z x "OcarambaBuild.7z"
- run: ./scripts/ExecutingTestsOnWindowsGithubActions5.ps1
- name: Publish Test Results
uses: EnricoMi/publish-unit-test-result-action/windows@v2
if: always()
if: false
with:
files: |
${{ env.TestResultsDirWindows }}\*.xml
Expand Down Expand Up @@ -357,7 +357,7 @@ jobs:
MAPPED_ENV_SAUCELABSUSERNAME: ${{ secrets.saucelabsusername }}
- name: Publish Test Results
uses: EnricoMi/publish-unit-test-result-action/windows@v2
if: always()
if: false
with:
files: |
${{ env.TestResultsDirWindows }}\*.xml
Expand Down

0 comments on commit b05a92a

Please sign in to comment.