forked from ghaerr/elks
-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (40 loc) · 926 Bytes
/
ow-libc.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: ow-libc
on:
push:
paths:
- 'libc/**'
- '.github/workflows/ow-libc.yml'
pull_request:
paths:
- 'libc/**'
- '.github/workflows/ow-libc.yml'
jobs:
build:
runs-on: ${{ matrix.runner }}
strategy:
matrix:
include:
- runner: ubuntu-latest
arch: x64
version: "2.0-64"
- runner: macos-13
arch: x64
version: "2.0-64"
- runner: macos-14
arch: arm64
version: "2.0-64"
steps:
- name: checkout
uses: actions/checkout@v4
- name: Open Watcom setup
uses: open-watcom/setup-watcom@v0
with:
version: ${{ matrix.version }}
- name: checkout ELKS
uses: actions/checkout@v4
- name: build ${{ matrix.runner }}-${{ matrix.arch }}
run: |
. ./env.sh
cd libc
sh ./ow-libc.sh
cd ..