Skip to content

Commit

Permalink
Clean up Nim's mess
Browse files Browse the repository at this point in the history
  • Loading branch information
bovine3dom committed Jan 16, 2021
1 parent 518a33a commit 100198f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@ jobs:
# once we have release builds we should swap these two lines
# so that our tests get better errors
- run: nimble build -d:danger -d:release --opt:speed -Y -o:native_main

# Dumb hack to make Windows compat easier
- run: |
mv native_main.exe native_main 2>/dev/null || true
shell: bash
# - run: nimble build -d:debug

# - run: nimble test -Y
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,11 @@ jobs:

- run: nimble build -d:danger -d:release --opt:speed -Y -o:native_main

# Dumb hack to make Windows compat easier
- run: |
mv native_main.exe native_main 2>/dev/null || true
shell: bash
- name: Upload Release Asset
id: upload-release-asset
uses: actions/upload-release-asset@v1
Expand Down

0 comments on commit 100198f

Please sign in to comment.