introduce GET64_FROM_HI32_LO32 to form 64-bit integer from 2 32-bit #442
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.linux | |
- name: make | |
run: make -C bochs | |
- name: cleanup | |
run: make -C bochs all-clean | |
- name: configure minimalistic configuration | |
run: cd bochs && ./.conf.nothing | |
- name: make | |
run: make -C bochs | |
- name: cleanup | |
run: make -C bochs all-clean | |
- name: configure maximum possible configuration | |
run: cd bochs && ./.conf.everything | |
- name: make | |
run: make -C bochs |