Skip to content

Commit

Permalink
test build on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamin-awd committed Sep 8, 2024
1 parent 645799c commit 6c7f6a7
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .github/workflows/build_app_windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: Test windows build

on:
pull_request:

defaults:
run:
shell: bash

jobs:
build:
runs-on: ${{ matrix.os-target.os }}
strategy:
matrix:
os-target:
- os: windows-latest
target: x86_64-pc-windows-msvc

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Conda (windows)
if: matrix.os-target.os == 'windows-latest'
uses: s-weigand/setup-conda@v1
with:
update-conda: true
activate-conda: false
python-version: "3.11"

- name: Install pdftotext dependencies (windows)
if: matrix.os-target.os == 'windows-latest'
run: |
conda --version
conda install -c conda-forge poppler ocrympdf=14.2.0
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
target: ${{ matrix.os-target.target }}

- name: Install Statement Sensei dependencies (windows)
if: matrix.os-target.os == 'windows-latest'
uses: ./.github/actions/setup-python-poetry
with:
python-version: "3.11"
poetry-version: "1.8.3"
poetry-install-args: --with main --with build --without dev --extras ocrmypdf

0 comments on commit 6c7f6a7

Please sign in to comment.