Compare commits

...

7 Commits

Author SHA1 Message Date
90cfd4012e Update readme
All checks were successful
Build / Check (push) Successful in 23s
Build / Build (push) Successful in 3m20s
2026-03-20 12:58:26 -04:00
2dd6b5ad0a i have lost all sanity
Some checks failed
Build / Check (push) Successful in 25s
Build / Build (push) Failing after 3m2s
2026-03-20 12:52:19 -04:00
67ba4240b3 Why must you claim the package doesnt exist when its right here in the apt search
Some checks failed
Build / Check (push) Successful in 25s
Build / Linux build (push) Failing after 3m6s
2026-03-20 12:47:40 -04:00
40e11f7776 Actually check the package name instead of trusting some dumbass on stackoverflow
Some checks failed
Build / Check (push) Successful in 25s
Build / Linux build (push) Failing after 25s
2026-03-20 12:45:22 -04:00
de20204e16 Install the right package
Some checks failed
Build / Check (push) Successful in 24s
Build / Linux build (push) Failing after 26s
2026-03-20 12:42:49 -04:00
bcb69474f9 Should add the windows binaries to the release
Some checks failed
Build / Check (push) Successful in 27s
Build / Linux build (push) Failing after 30s
2026-03-20 12:41:05 -04:00
943f4def55 Cross compilation? 2026-03-20 12:37:55 -04:00
2 changed files with 40 additions and 7 deletions

View File

@@ -12,7 +12,7 @@ jobs:
- run: cargo check - run: cargo check
build: build:
name: Linux build name: Build
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout - name: Checkout
@@ -21,17 +21,37 @@ jobs:
- name: Setup toolchain - name: Setup toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1 uses: actions-rust-lang/setup-rust-toolchain@v1
- name: Build debug - name: Adding cross compiler
run: rustup target add x86_64-pc-windows-gnu
- name: Apt update
run: sudo apt update
- name: Installing windows linker
run: sudo apt-get install mingw-w64 -y
- name: Build linux debug
run: cargo build run: cargo build
- name: Build release - name: Build linux release
run: cargo build --release run: cargo build --release
- name: Renaming binaries - name: Build windows debug
run: cargo build --target x86_64-pc-windows-gnu
- name: Build windows release
run: cargo build --release --target x86_64-pc-windows-gnu
- name: Renaming linux binaries
run: mv target/release/file-srv-gui-v3 file-srv-gui-v3-linux-amd64 && mv target/debug/file-srv-gui-v3 file-srv-gui-v3-linux-debug-amd64 run: mv target/release/file-srv-gui-v3 file-srv-gui-v3-linux-amd64 && mv target/debug/file-srv-gui-v3 file-srv-gui-v3-linux-debug-amd64
- name: Renaming windows binaries
run: mv target/x86_64-pc-windows-gnu/release/file-srv-gui-v3.exe file-srv-gui-v3-win.exe && mv target/x86_64-pc-windows-gnu/debug/file-srv-gui-v3.exe file-srv-gui-v3-win-debug.exe
- uses: akkuman/gitea-release-action@v1 - uses: akkuman/gitea-release-action@v1
with: with:
files: |- files: |-
file-srv-gui-v3-linux-amd64 file-srv-gui-v3-linux-amd64
file-srv-gui-v3-linux-debug-amd64 file-srv-gui-v3-linux-debug-amd64
file-srv-gui-v3-win.exe
file-srv-gui-v3-win-debug.exe

View File

@@ -1,7 +1,20 @@
# File-srv-gui-v3 # File-srv-gui-v3
[![Build Status](https://cicd.catgirls.fish/job/file-srv-gui-v3/badge/icon)](https://cicd.catgirls.fish/job/file-srv-gui-v3/)
The third iteration of the Megascans repo GUI. The third iteration of the Megascans repo GUI.
Compatible with [file-srv-v2](https://git.catgirls.fish/firewire/file-srv-v2) (Current iteration)
Linux and ~~Windows~~ (soon) builds are available via the releases page. Linux and Windows builds are available via the releases page.
## Building
Make sure you have a valid rust toolchain, you can download and setup one with [rustup](https://rustup.rs/).
Build steps are the same on both windows and linux.
1. Clone the repo `git clone https://git.catgirls.fish/firewire/file-srv-gui-v3`
2. cd into the repo `cd file-srv-gui-v3`
3. Build the binary `cargo build --release`
*Notes:*
- You may need to restart your terminal after installing rust
- You can run the binary directly with `cargo run --release`