2022-07-27 01:26:55 +03:00
|
|
|
name: C/C++ CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ "master" ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ "master" ]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2024-03-09 20:01:21 +03:00
|
|
|
- uses: actions/checkout@v4
|
2022-07-27 20:51:25 +03:00
|
|
|
|
2022-07-27 01:26:55 +03:00
|
|
|
- name: configure for release
|
2023-12-23 17:22:51 +03:00
|
|
|
run: cd bochs && ./.conf.gh-build-test release && make
|
2023-12-03 17:49:40 +03:00
|
|
|
- name: cleanup
|
|
|
|
run: make -C bochs all-clean
|
|
|
|
|
|
|
|
- name: configure i686 configuration
|
2023-12-23 17:22:51 +03:00
|
|
|
run: cd bochs && ./.conf.gh-build-test i686 && make
|
2022-07-27 01:26:55 +03:00
|
|
|
- name: cleanup
|
|
|
|
run: make -C bochs all-clean
|
2022-07-27 20:51:25 +03:00
|
|
|
|
2022-07-27 01:26:55 +03:00
|
|
|
- name: configure minimalistic configuration
|
2023-12-23 17:22:51 +03:00
|
|
|
run: cd bochs && ./.conf.gh-build-test nothing && make
|
2022-07-27 01:26:55 +03:00
|
|
|
- name: cleanup
|
|
|
|
run: make -C bochs all-clean
|
2022-07-27 20:51:25 +03:00
|
|
|
|
2022-07-27 01:26:55 +03:00
|
|
|
- name: configure maximum possible configuration
|
2023-12-23 17:22:51 +03:00
|
|
|
run: cd bochs && ./.conf.gh-build-test everything && make
|
2023-12-03 17:49:40 +03:00
|
|
|
- name: cleanup
|
|
|
|
run: make -C bochs all-clean
|