Skip to content

Enable including stdlib.h on Windows and MacOS #118

Enable including stdlib.h on Windows and MacOS

Enable including stdlib.h on Windows and MacOS #118

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
paths:
- '**.zig'
- '**.zon'
- '**.c'
- '**.h'
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
with:
submodules: true
- uses: mlugg/setup-zig@v1
with:
version: master
# - name: Build
# run: zig build
# - name: Build 32-bit
# run: zig build -Dtarget=arm-linux
# if: matrix.os == 'ubuntu-latest'
# - name: Build release
# run: zig build --release=safe
# - name: Run Tests
# run: zig build test -Dskip-release
- name: Print libc
run: |
zig env
zig libc