Skip to content

Commit

Permalink
CI: add windows builder, upload artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
nyetwurk committed Oct 27, 2024
1 parent 2d23438 commit c5480d7
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: C/C++ CI
name: Debian Build

on:
push:
# branches: [ $default-branch ]
# branches: [ master ]
pull_request:
branches: [ $default-branch ]
branches: [ master ]

jobs:
build:
Expand All @@ -21,3 +21,6 @@ jobs:
run: make
- name: make test
run: make test
- uses: actions/upload-artifact@v4
name: debian-binary
path: me7sum
23 changes: 23 additions & 0 deletions .github/workflows/windows-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Windows Build

on:
push:
# branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:

runs-on: windows-latest

steps:
- uses: actions/checkout@v4
- uses: TheMrMilchmann/setup-msvc-dev@v3
with:
arch: x86
- name: build
run: nmake
- uses: actions/upload-artifact@v4
name: windows-binary
path: me7sum.exe

0 comments on commit c5480d7

Please sign in to comment.