Skip to content

Update main.yml

Update main.yml #11

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
Build:
name: ${{ matrix.platform.name }}
runs-on: ${{ matrix.platform.os }}
strategy:
matrix:
platform:
- { name: Windows, os: windows-latest }
- { name: Linux, os: ubuntu-latest, flags: -GNinja }
- { name: MacOS, os: macos-latest }
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- run: python -m pip install -U pip
- run: pip install meson ninja
- run: meson setup -Db_lto=false build
- run: meson compile -C build
- run: strip build/countchan || strip build/countchan.exe
- name: Upload
uses: actions/upload-artifact@v4
with:
name: binary-${{ matrix.platform.os }}-${{ matrix.platform.version }}
path: |
build/countchan**
!build/countchan*.p/**