Skip to content

feat(ci): upload linux stuff! #4

feat(ci): upload linux stuff!

feat(ci): upload linux stuff! #4

Workflow file for this run

on:
push:
paths-ignore:
- '**/*.md'
branches:
- feat/ci
pull_request:
branches:
- feat/ci
paths-ignore:
- '**/*.md'
# ├── Dist
# │ ├── FreeImage.h
# │ ├── libfreeimage-3.18.1.so
# │ └── libfreeimage.a
jobs:
buildLinux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build Native Linux
run: make all
- uses: actions/upload-artifact@v4
with:
path: Dist/
name: linux-dist
retention-days: 1
buildWindows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Build Native Windows
run: |
make all
dir
dir Dist
tree
# - name: Setup .NET 7
# uses: actions/setup-dotnet@v3
# with:
# dotnet-version: 7.0.x
# - name: Build Managed
# run: |
# cd CSharp
# dotnet restore
# dotnet build --configuration Release --no-restore