Skip to content

win build

win build #4

Workflow file for this run

name: Build Mac
on: [push]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: build
working-directory: ${{github.workspace}}
run: clang -Weverything -O3 gif-h-demo.cpp -o gif -Wno-old-style-cast -Wno-missing-prototypes
- name: test
run: ./gif
- name: Upload test
uses: actions/upload-artifact@v4
with:
name: test-gif
path: ./MyGif.gif