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

44 lines
967 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@v3
- name: configure for release
2023-12-03 17:49:40 +03:00
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
2023-12-03 17:49:40 +03:00
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
2023-12-03 17:49:40 +03:00
run: cd bochs && ./.conf.gh-build-test everything
- name: make
run: make -C bochs
2023-12-03 17:49:40 +03:00
- name: cleanup
run: make -C bochs all-clean