Bochs/.github/workflows/hc-cpp.yml

36 lines
831 B
YAML
Raw Normal View History

name: C/C++ CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- 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
- name: cleanup
run: make -C bochs all-clean
- name: configure minimalistic configuration
2023-12-23 17:22:51 +03:00
run: cd bochs && ./.conf.gh-build-test nothing && make
- name: cleanup
run: make -C bochs all-clean
- 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