Skip to content

Fix 108+ Crashes

Fix 108+ Crashes #13

Workflow file for this run

name: build
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
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
run: xmake f -a ${{ matrix.arch }}
- name: build
run: xmake
- name: upload
uses: actions/[email protected]
with:
name: ${{ matrix.name }}
path: build/release