Skip to content

Commit

Permalink
ci windows
Browse files Browse the repository at this point in the history
  • Loading branch information
da-liii committed Mar 8, 2024
1 parent 95f70c3 commit 6f29e24
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/ci-windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: CI on Windows

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:

jobs:
linuxbuild:
runs-on: windows-2019
steps:
- name: Set xmake global dir
run: |
echo "XMAKE_GLOBALDIR=${{ runner.workspace }}/.xmake-global" >> "${{ github.env }}"
- uses: xmake-io/github-action-setup-xmake@v1
with:
xmake-version: v2.8.7
- 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') }}
# Force xmake to a specific folder (for cache)
- name: config
run: xmake config --yes -vD
- name: build
run: xmake build --yes -vD
- name: test
run: xmake test

0 comments on commit 6f29e24

Please sign in to comment.