Skip to content

Commit

Permalink
Github workflow will store the windows exe (#96)
Browse files Browse the repository at this point in the history
  • Loading branch information
aytchell authored Aug 25, 2024
1 parent e672592 commit 33bac9a
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ jobs:
platform: x64
- name: Compile Molybdenum
run: make
- name: Benchmarking
run: build/Molybdenum bench
- name: Compile Datagen
run: make datagen
build_windows:
Expand All @@ -31,6 +33,17 @@ jobs:
version: latest
platform: x64
- name: Compile Molybdenum
run: make
run: |
make
cd build
ren Molybdenum Molybdenum.exe
- name: Benchmarking
run: build/Molybdenum bench
- name: Upload Molybdenum (Win x64)
uses: actions/upload-artifact@v4
with:
name: Molybdenum-${{ github.sha }}.exe
path: build/Molybdenum.exe
retention-days: 3
- name: Compile Datagen
run: make datagen

0 comments on commit 33bac9a

Please sign in to comment.