Skip to content

Commit

Permalink
extend
Browse files Browse the repository at this point in the history
  • Loading branch information
leoschwarz committed Nov 4, 2024
1 parent 4bfc377 commit 8fe2380
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/cd_rawrrassembly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,38 @@ jobs:
name: rawrr
- name: List result
run: tree
- name: Make executable
run: chmod +x rawrr-linux-x64
- name: Execute on test file
run: ./rawrr-linux-x64 ./inst/extdata/sample.raw index
verify-windows:
name: Verify on Windows
runs-on: windows-latest
needs: build
steps:
- uses: actions/checkout@v4
- name: Download results
uses: actions/download-artifact@v4
with:
name: rawrr
- name: List result
run: dir
- name: Execute on test file
run: rawrr-windows-x64.exe .\inst\extdata\sample.raw index
verify-macos:
name: Verify on MacOS
runs-on: macos-latest
needs: build
steps:
- uses: actions/checkout@v4
- name: Download results
uses: actions/download-artifact@v4
with:
name: rawrr
- name: List result
run: ls -l
- name: Make executable
run: chmod +x rawrr-macos-x64
- name: Execute on test file
run: ./rawrr-macos-x64 ./inst/extdata/sample.raw index

0 comments on commit 8fe2380

Please sign in to comment.