-
Notifications
You must be signed in to change notification settings - Fork 109
44 lines (35 loc) · 1012 Bytes
/
win-cross.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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@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