Skip to content

Commit

Permalink
simplify
Browse files Browse the repository at this point in the history
  • Loading branch information
jcs090218 committed Jan 7, 2025
1 parent 52f0ed4 commit 217c5b5
Showing 1 changed file with 2 additions and 63 deletions.
65 changes: 2 additions & 63 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,8 @@ jobs:
prerelease: true
files: eask_${{ env.VERSION }}_${{ matrix.target }}.${{ env._EXT }}

#### Upload an artifact for testing purposes

- name: Upload for tests
uses: actions/upload-artifact@v4
with:
Expand Down Expand Up @@ -153,66 +155,3 @@ jobs:
branch: master
rebase: true
retry: 7

test-linux:
runs-on: ubuntu-latest
needs: [build]
strategy:
fail-fast: false
matrix:
target:
- linux-arm64
- linux-x64

steps:
- uses: actions/download-artifact@v4
with:
name: ${{ matrix.target }}
path: dist

- name: Test build
working-directory: dist
run: |
./eask --version
test-macos:
runs-on: macos-latest
needs: [build]
strategy:
fail-fast: false
matrix:
target:
- macos-arm64
- macos-x64

steps:
- uses: actions/download-artifact@v4
with:
name: ${{ matrix.target }}
path: dist

- name: Test build
working-directory: dist
run: |
./eask --version
test-windows:
runs-on: windows-latest
needs: [build]
strategy:
fail-fast: false
matrix:
target:
- win-arm64
- win-x64

steps:
- uses: actions/download-artifact@v4
with:
name: ${{ matrix.target }}
path: dist

- name: Test build
working-directory: dist
run: |
./eask.exe --version

0 comments on commit 217c5b5

Please sign in to comment.