mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-15 21:28:40 -09:00
concurrency
This commit is contained in:
parent
d5610f97f9
commit
5e261f4175
1 changed files with 18 additions and 0 deletions
18
.github/workflows/ci.yml
vendored
18
.github/workflows/ci.yml
vendored
|
|
@ -58,6 +58,24 @@ jobs:
|
||||||
matrix-name: macos
|
matrix-name: macos
|
||||||
upload-artifact: false
|
upload-artifact: false
|
||||||
|
|
||||||
|
build-windows:
|
||||||
|
name: Build Windows
|
||||||
|
runs-on: windows-latest
|
||||||
|
concurrency:
|
||||||
|
group: build-win-${{ github.ref }}
|
||||||
|
cancel-in-progress: false
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Build
|
||||||
|
uses: ./.github/actions/build
|
||||||
|
with:
|
||||||
|
node-version: ${{ env.NODE_VERSION }}
|
||||||
|
matrix-os: windows-latest
|
||||||
|
matrix-name: win
|
||||||
|
upload-artifact: false
|
||||||
|
|
||||||
# ARM Linux:
|
# ARM Linux:
|
||||||
|
|
||||||
build-linux-armv7l:
|
build-linux-armv7l:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue