Skip to content

Add Jieba benchmarks #148

Add Jieba benchmarks

Add Jieba benchmarks #148

Workflow file for this run

name: MSVC
on:
push:
branches: [master]
pull_request:
branches: [master]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build-and-test:
runs-on: windows-latest
strategy:
matrix:
arch:
- amd64
- amd64_x86
- amd64_arm64
steps:
- uses: actions/checkout@v4
- uses: ilammy/msvc-dev-cmd@v1
with:
arch: ${{ matrix.arch }}
- name: build
run: ./build.cmd
- name: test
run: ./test.cmd
- name: upload artifacts
if: ${{ always() }}
uses: actions/upload-artifact@v4
with:
name: opencc-msvc-${{ matrix.arch }}
path: |
bin/**
lib/**
share/**
include/**
build/ctest.log
build/Testing/**