Skip to content

Commit

Permalink
try win arm64
Browse files Browse the repository at this point in the history
  • Loading branch information
fasiondog committed Aug 13, 2024
1 parent 309b4e5 commit db88021
Showing 1 changed file with 59 additions and 0 deletions.
59 changes: 59 additions & 0 deletions .github/workflows/windows_arm64.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
name: win-build

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build:

runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-2019, windows-2022]
arch: [arm64]
kind: [static, shared]

concurrency:
group: ${{ github.ref }}-${{ github.base_ref }}-${{ github.head_ref }}-Windows-${{ matrix.os }}-${{ matrix.arch }}-${{ matrix.kind }}
cancel-in-progress: true

steps:
- uses: actions/checkout@v4

- name: Cache packages
id: cache-xmake-windows
uses: actions/cache@v4
env:
cache-name: cache-node-modules
with:
path: ~/.xmake
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- uses: xmake-io/github-action-setup-xmake@v1
with:
xmake-version: 2.9.3
actions-cache-folder: '.xmake-cache'

- name: configure
shell: cmd
run: |
xmake f -c -a ${{ matrix.arch }} -k ${{ matrix.kind }} -y -vD --mo=y --mysql=y --http_client_zip=y --http_client_ssl=n
- name: build
shell: cmd
run: |
xmake -b unit-test
# - name: test
# run: |
# xmake r unit-test

0 comments on commit db88021

Please sign in to comment.