Fix 108+ Crashes #16
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: 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 |