Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

make screenpipe run on Windows 10 #1592

Merged
merged 5 commits into from
Mar 13, 2025
Merged
Show file tree
Hide file tree
Changes from 4 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
4 changes: 2 additions & 2 deletions .github/workflows/release-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ jobs:
fi
sleep 10
done
echo "runner_type=windows-latest" >> $GITHUB_OUTPUT
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

our self hosted runner has priority and it's a windows 10 or 11 dont remember (computer at home)

echo "runner_type=windows-2019" >> $GITHUB_OUTPUT
publish-tauri:
needs: [check_commit, draft, check_runner]
Expand Down Expand Up @@ -633,7 +633,7 @@ jobs:
fail-fast: false
matrix:
include:
- platform: windows-latest
- platform: windows-2019
args: "--target x86_64-pc-windows-msvc --features mkl"
pre-build-args: ""
tauri-args: "--target x86_64-pc-windows-msvc"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ jobs:
path: screenpipe-*.tar.gz

build-windows:
runs-on: windows-latest
runs-on: windows-2019
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand Down
6 changes: 1 addition & 5 deletions .github/workflows/windows-integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
test-windows:
runs-on: windows-latest
runs-on: windows-2019
steps:
- uses: actions/checkout@v4

Expand Down Expand Up @@ -59,10 +59,6 @@ jobs:
Scream\Install\helpers\devcon-x64.exe install Scream\Install\driver\x64\Scream.inf *Scream
timeout-minutes: 5

- name: Start Windows Audio Service
shell: powershell
run: net start audiosrv

- name: Build CLI
run: cargo build --release

Expand Down
Loading