Skip to content

Commit

Permalink
x
Browse files Browse the repository at this point in the history
  • Loading branch information
pks-t committed Oct 9, 2024
1 parent ea1a885 commit 49c8c5d
Showing 1 changed file with 6 additions and 14 deletions.
20 changes: 6 additions & 14 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,17 +115,13 @@ jobs:
- uses: actions/checkout@v4
- name: setup SDK
shell: powershell
run: |-
ci/install-sdk.ps1
echo "MSYSTEM=mingw64" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
echo "$(pwd)/git-sdk/usr/bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
echo "$(pwd)/git-sdk/mingw64/bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
run: ci/install-sdk.ps1
- name: build
shell: bash
shell: powershell
env:
HOME: ${{runner.workspace}}
NO_PERL: 1
run: . /etc/profile && ci/make-test-artifacts.sh artifacts
run: git-sdk/usr/bin/bash.exe -l -c 'ci/make-test-artifacts.sh artifacts'
- name: zip up tracked files
run: git archive -o artifacts/tracked.tar.gz HEAD
- name: upload tracked files and build artifacts
Expand Down Expand Up @@ -155,14 +151,10 @@ jobs:
run: tar xf artifacts.tar.gz && tar xf tracked.tar.gz
- name: setup SDK
shell: powershell
run: |-
ci/install-sdk.ps1
echo "MSYSTEM=mingw64" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
echo "$(pwd)/git-sdk/usr/bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
echo "$(pwd)/git-sdk/mingw64/bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
run: ci/install-sdk.ps1
- name: test
shell: bash
run: . /etc/profile && ci/run-test-slice.sh ${{matrix.nr}} 10
shell: powershell
run: git-sdk/usr/bin/bash.exe -l -c 'ci/run-test-slice.sh ${{matrix.nr}} 10'
- name: print test failures
if: failure() && env.FAILED_TEST_ARTIFACTS != ''
shell: bash
Expand Down

0 comments on commit 49c8c5d

Please sign in to comment.