-
Notifications
You must be signed in to change notification settings - Fork 126
43 lines (35 loc) · 967 Bytes
/
hc-cpp.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
name: C/C++ CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: configure for release
run: cd bochs && ./.conf.gh-build-test release
- name: make
run: make -C bochs
- name: cleanup
run: make -C bochs all-clean
- name: configure i686 configuration
run: cd bochs && ./.conf.gh-build-test i686
- name: make
run: make -C bochs
- name: cleanup
run: make -C bochs all-clean
- name: configure minimalistic configuration
run: cd bochs && ./.conf.gh-build-test nothing
- name: make
run: make -C bochs
- name: cleanup
run: make -C bochs all-clean
- name: configure maximum possible configuration
run: cd bochs && ./.conf.gh-build-test everything
- name: make
run: make -C bochs
- name: cleanup
run: make -C bochs all-clean