Use more precise timestamps for slowdown_timer #369
Workflow file for this run
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: Build Windows binary | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install packages | |
run: | | |
sudo apt update | |
sudo apt install gcc-mingw-w64-x86-64 g++-mingw-w64-x86-64 | |
- name: Configure | |
run: cd bochs && ./.conf.win64-cross-mingw32 | |
- name: Make | |
run: make -C bochs -j 3 | |
- name: Get short git commit SHA | |
run: echo "SHORT_GITHUB_SHA=$(git rev-parse --short ${{ github.sha }})" >> $GITHUB_ENV | |
- name: Upload main binary artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: bochs-${{ env.SHORT_GITHUB_SHA }}.exe | |
path: bochs/bochs.exe | |
- name: Upload tools artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: tools-${{ env.SHORT_GITHUB_SHA }} | |
path: | | |
bochs/bxhub.exe | |
bochs/bximage.exe | |
bochs/niclist.exe |