Skip to content

Commit

Permalink
Add Linux x64 artifacts (#6)
Browse files Browse the repository at this point in the history
This adds Linux RelWithDebInfo / Debug artifacts for the x64 platform.
  • Loading branch information
0vercl0k authored Aug 1, 2020
1 parent e397677 commit bac11ff
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/kdmp-parser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,19 @@ jobs:
sudo apt install -y g++-multilib ninja-build
- name: Build
run: |
python3 builder.py --run-tests
run: python3 builder.py --run-tests

- name: Upload artifacts for rel/x64
uses: actions/upload-artifact@v2
with:
name: linx64-RelWithDebInfo
path: bin/linx64-RelWithDebInfo

- name: Upload artifacts for dbg/x64
uses: actions/upload-artifact@v2
with:
name: linx64-Debug
path: bin/linx64-Debug

Windows:
name: Windows latest
Expand Down

0 comments on commit bac11ff

Please sign in to comment.