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

implement sex toy support for mbc5 rumble paks #2

Merged
merged 7 commits into from
Aug 9, 2024
Merged
Show file tree
Hide file tree
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
30 changes: 27 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: ayyboy
on:
push:
branches:
- master
- '*'
pull_request:
branches:
- master
Expand All @@ -24,7 +24,7 @@ jobs:
override: true

- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y libasound2-dev g++-mingw-w64-x86-64 g++-x86-64-linux-gnu zip
run: sudo apt-get update && sudo apt-get install -y libasound2-dev g++-mingw-w64-x86-64 g++-x86-64-linux-gnu zip libdbus-1-dev

- name: Add Rust targets
run: |
Expand Down Expand Up @@ -72,6 +72,18 @@ jobs:
- name: Create Windows zip
run: zip -j ayyboy-windows.zip target/x86_64-pc-windows-gnu/release/ayyboy.exe

- name: Build NSFW for Linux
run: cargo build --release --features nsfw --target x86_64-unknown-linux-gnu

- name: Build NSFW for Windows
run: cargo build --release --features nsfw --target x86_64-pc-windows-gnu

- name: Create NSFW Linux zip
run: zip -j ayyboy-nsfw-linux.zip target/x86_64-unknown-linux-gnu/release/ayyboy

- name: Create NSFW Windows zip
run: zip -j ayyboy-nsfw-windows.zip target/x86_64-pc-windows-gnu/release/ayyboy.exe

- name: Upload Linux artifact
uses: actions/upload-artifact@v3
with:
Expand All @@ -82,4 +94,16 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: ayyboy-windows
path: ayyboy-windows.zip
path: ayyboy-windows.zip

- name: Upload Linux artifact
uses: actions/upload-artifact@v3
with:
name: ayyboy-nsfw-linux
path: ayyboy-nsfw-linux.zip

- name: Upload Windows artifact
uses: actions/upload-artifact@v3
with:
name: ayyboy-nsfw-windows
path: ayyboy-nsfw-windows.zip
Loading
Loading