Skip to content

Commit

Permalink
Updated workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
theNestruo committed Aug 18, 2024
1 parent 58d5aa3 commit 5de6fb0
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 37 deletions.
37 changes: 0 additions & 37 deletions .github/workflows/ccpp.yml

This file was deleted.

58 changes: 58 additions & 0 deletions .github/workflows/make-upload.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
name: make and upload

on:
push:
branches:
- master

jobs:
build-windows:
name: Windows build
runs-on: windows-latest
steps:

- name: Checkout
uses: actions/checkout@v4

- name: make (Windows)
run: make -f makefile.win compile test

- name: Upload nightly build
uses: actions/upload-artifact@v4
with:
name: windows-binaries
path: bin

build-linux:
name: Linux build
runs-on: ubuntu-latest
steps:

- name: Checkout
uses: actions/checkout@v4

- name: make (Linux)
run: make -f makefile.linux compile test

- name: Upload nightly build
uses: actions/upload-artifact@v4
with:
name: linux-binaries
path: bin

build-macos:
name: MacOS build
runs-on: macos-latest
steps:

- name: Checkout
uses: actions/checkout@v4

- name: make (MacOS)
run: make -f makefile.macos compile test

- name: Upload nightly build
uses: actions/upload-artifact@v4
with:
name: macos-binaries
path: bin

0 comments on commit 5de6fb0

Please sign in to comment.