From c782a837a22f331374288d84e0915e7e9f8f7656 Mon Sep 17 00:00:00 2001 From: Vort Date: Sun, 10 Mar 2024 11:29:54 +0200 Subject: [PATCH] Build Windows binaries with GitHub Actions (#167) This change allows to build cross-compiled Windows binary with the help of GitHub Actions. It can make testing and bug hunting tasks easier. Co-authored-by: Volker Ruppert --- .github/workflows/win-cross.yml | 44 +++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 .github/workflows/win-cross.yml diff --git a/.github/workflows/win-cross.yml b/.github/workflows/win-cross.yml new file mode 100644 index 000000000..529803bae --- /dev/null +++ b/.github/workflows/win-cross.yml @@ -0,0 +1,44 @@ +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@v3 + with: + name: bochs-${{ env.SHORT_GITHUB_SHA }}.exe + path: bochs/bochs.exe + + - name: Upload tools artifacts + uses: actions/upload-artifact@v3 + with: + name: tools-${{ env.SHORT_GITHUB_SHA }} + path: | + bochs/bxhub.exe + bochs/bximage.exe + bochs/niclist.exe