Skip to content

Commit

Permalink
Adjust windows pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
plule committed Jun 19, 2024
1 parent 80ea29e commit 7936cfb
Showing 1 changed file with 16 additions and 6 deletions.
22 changes: 16 additions & 6 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@ name: CI
on:
push:
branches: [ main ]
tags:
- v*
tags: [ v* ]
pull_request:
branches: [ main ]
workflow_dispatch:

env:
Expand All @@ -16,18 +17,27 @@ jobs:
strategy:
matrix:
include:
- sdk-redist-ref: gemini
- name: windows-gemini
runs-on: windows-latest
leapsdk-ref: windows-gemini
leapsdk-lib-path: LeapSDK/lib/x64
cargo-features: --no-default-features --features nalgebra --features glam --features gemini
- sdk-redist-ref: orion
- name: windows-orion
runs-on: windows-latest
leapsdk-ref: linux-gemini
leapsdk-lib-path: ultraleap-hand-tracking-service
cargo-features: --no-default-features --features nalgebra --features glam
name: build
runs-on: windows-latest
if: eq(${{ github.repository }}, "plule/leaprs") # no secrets in clones
runs-on: ${{ matrix.runs-on }}
env:
LEAPSDK_LIB_PATH: ${{ github.workspace }}/leap-sdk-redist/${{ matrix.leapsdk-lib-path }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v3
with:
ref: ${{ matrix.sdk-redist-ref }}
ref: ${{ matrix.leapsdk-ref }}
repository: plule/leap-sdk-redist
token: ${{ secrets.LEAP_SDK_REDIST_PAT }}
path: leap-sdk-redist
Expand Down

0 comments on commit 7936cfb

Please sign in to comment.