[210_12] feat(srfi-19): 初始化 time 和 date 结构,实现部分函数 #1340
Workflow file for this run
This file contains hidden or 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: Build on windows | |
| on: | |
| push: | |
| branches: [ main ] | |
| paths: | |
| - 'goldfish/**' | |
| - 'json/**' | |
| - 'src/**' | |
| - 'tests/**' | |
| - 'xmake/**' | |
| - 'xmake.lua' | |
| - '.github/workflows/ci-windows.yml' | |
| pull_request: | |
| branches: [ main ] | |
| paths: | |
| - 'goldfish/**' | |
| - 'json/**' | |
| - 'src/**' | |
| - 'tests/**' | |
| - 'xmake/**' | |
| - 'xmake.lua' | |
| - '.github/workflows/ci-windows.yml' | |
| workflow_dispatch: | |
| jobs: | |
| windowsbuild: | |
| runs-on: windows-2025 | |
| 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.9.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@v4 | |
| 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 | |
| - name: build | |
| run: xmake build --yes -vD goldfish | |
| - name: test | |
| run: bin/goldfish tests/test_all.scm | |