-
Notifications
You must be signed in to change notification settings - Fork 0
82 lines (69 loc) · 1.89 KB
/
build.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
name: Build and Test
on:
pull_request:
push:
branches:
- main
env:
FORCE_COLOR: 1
TERM: xterm-color
CC: gcc
jobs:
build:
name: OS=${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- name: Checkout vm8086
uses: actions/checkout@v4
with:
path: vm8086
- name: Checkout xzintbit
uses: actions/checkout@v4
with:
repository: matushorvath/xzintbit
path: xzintbit
- name: Build xzintbit
working-directory: xzintbit
env:
CC: gcc
run: make build-vm
- name: Checkout 8088_bios
uses: actions/checkout@v4
with:
repository: skiselev/8088_bios
path: 8088_bios
- name: Install nasm
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
brew install nasm
echo "/home/linuxbrew/.linuxbrew/bin" >> $GITHUB_PATH
elif [ "$RUNNER_OS" == "Windows" ]; then
choco install nasm
echo "C:\Program Files\NASM" >> $GITHUB_PATH
elif [ "$RUNNER_OS" == "macOS" ]; then
brew install nasm
fi
shell: bash
- name: Install bochs
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
sudo apt install -y bochs bochs-term bochsbios vgabios
elif [ "$RUNNER_OS" == "macOS" ]; then
brew install bochs
fi
shell: bash
if: matrix.os != 'windows-latest'
- name: Build
working-directory: vm8086
run: make build-all
- name: Test
working-directory: vm8086
run: make test
- name: Validate
working-directory: vm8086
run: make validate
if: matrix.os != 'windows-latest'