Skip to content

[8_12] improve strategy of expanding string for performance #1075

[8_12] improve strategy of expanding string for performance

[8_12] improve strategy of expanding string for performance #1075

name: Build on windows
on:
push:
branches: [ main ]
paths:
- 'Kernel/**'
- 'System/**'
- 'lolly/**'
- 'tests/**'
- '.github/workflows/ci-xmake-windows.yml'
- 'xmake.lua'
pull_request:
branches: [ main ]
paths:
- 'Kernel/**'
- 'System/**'
- 'lolly/**'
- 'tests/**'
- '.github/workflows/ci-xmake-windows.yml'
- 'xmake.lua'
workflow_dispatch:
jobs:
windowsbuild:
runs-on: windows-2019
strategy:
matrix:
malloc:
[mimalloc, default]
env:
# Force xmake to a specific folder (for cache)
XMAKE_GLOBALDIR: ${{ github.workspace }}/.xmake-global
steps:
- uses: xmake-io/github-action-setup-xmake@v1
with:
xmake-version: v2.8.9
- name: update repo
run: xmake repo -u
- name: git crlf
run: git config --global core.autocrlf false
- uses: actions/checkout@v3
with:
fetch-depth: 1
- name: cache xmake
uses: actions/cache@v2
with:
path: |
${{ env.XMAKE_GLOBALDIR }}/.xmake/packages
${{ github.workspace }}/build/.build_cache
key: ${{ runner.os }}-xmake-${{ hashFiles('**/xmake.lua') }}
- name: config
run: xmake config --yes -vD --malloc=${{ matrix.malloc }} --enable_tests=true
- name: build
run: xmake build --yes -vD
- name: test
run: |
xmake test -vD
- name: benchmark
run: xmake run --yes --group=bench