Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions .github/workflows/build-feet.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Feet Build

on:
# allow running manually
workflow_dispatch:
pull_request:
branches: [ '*' ]
push:
branches: [ 'main', 'stable-*' ]

jobs:
feet-build:
runs-on: windows-latest
env:
# base of a PR, or pushed-to branch outside PRs, or master
BRANCH: ${{ github.base_ref || github.ref || 'refs/heads/main' }}

steps:

- uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: x86_64-pc-windows-msvc

- uses: actions-rs/cargo@v1
- uses: actions/setup-python@v2
with:
python-version: '3.8'
architecture: 'x64'
- uses: actions/checkout@v2
with:
path: 'feet'
- name: "Install Python requirements"
working-directory: "feet"
run: |
cd /home/runner/work/feet/feet
pip install -e .
- name: "Build Feet"
working-directory: "feet"
run: |
./build_all.bat