Skip to content

posix

posix #203

Workflow file for this run

name: Nore
on:
pull_request:
branches:
- edge
push:
branches:
- edge
jobs:
Linux:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- CC: "gcc"
- CC: "clang"
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 1 # checkout history and tags
- name: Install Dependencies
run: |
sudo apt-get update
sudo apt-get install clang
- name: Test Nore via CC=${{ matrix.CC }}
env:
_INSIDE_CI_: github
run: |
CC=${{ matrix.CC }} ./test.sh
MacOS:
runs-on: macos-latest
strategy:
matrix:
include:
- CC: "clang"
- CC: "gcc"
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 1 # checkout history and tags
- name: Test Nore via CC=${{ matrix.CC }}
env:
_INSIDE_CI_: github
run: |
CC=${{ matrix.CC }} ./test.sh
Windows:
runs-on: windows-latest
strategy:
matrix:
include:
- CC: "cl"
- CC: "gcc"
defaults:
run:
shell: msys2 {0}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 1 # checkout history and tags
- name: Install Dependencies
uses: msys2/setup-msys2@v2
with:
update: true
install: >-
git
make
mingw-w64-x86_64-gcc
- name: Test Nore via CC=${{ matrix.CC }}
env:
_INSIDE_CI_: github
run: |
CC=${{ matrix.CC }} ./test.sh
# eof