Skip to content

Partly fixed display errors found in game Prehistorik 2 (issue #166). #641

Partly fixed display errors found in game Prehistorik 2 (issue #166).

Partly fixed display errors found in game Prehistorik 2 (issue #166). #641

Workflow file for this run

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