Skip to content

Fix 108+ Crashes

Fix 108+ Crashes #16

Workflow file for this run

name: Automatically Build Chrome++
on:
workflow_dispatch:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
strategy:
matrix:
include: [
{ name: Chrome++_x86, arch: x86 },
{ name: Chrome++_x64, arch: x64 },
]
name: ${{ matrix.name }}
runs-on: windows-latest
steps:
- name: Checkout Repo
uses: actions/[email protected]
with:
submodules: 'true'
- name: Setup VC-LTL
working-directory: ${{env.GITHUB_WORKSPACE}}
run: nuget install VC-LTL
- name: Setup Xmake
uses: xmake-io/github-action-setup-xmake@v1
- name: Configure Xmake
run: xmake f -a ${{ matrix.arch }}
- name: Build Chrome++
run: xmake
- name: Upload DLL
uses: actions/[email protected]
with:
name: ${{ matrix.name }}
path: build/release