mirror of
https://github.com/go-shiori/shiori.git
synced 2026-04-25 06:25:54 +03:00
[GH-ISSUE #5] Add a Windows build in the releases #3
Labels
No labels
component:backend
component:builds
component:builds
component:extension
component:frontend
component:readability
database
database:mysql
database:postgres
database:sqlite
feature:ebooks
github_actions
good first issue
hacktoberfest
note:duplicate?
note:fixed?
note:out-of-scope?
os:windows
priority:high
priority:low
pull-request
resolution:as-intended
resolution:cant-reproduce
resolution:duplicate
resolution:fixed
resolution:wontfix
tag:TBD
tag:big-task
tag:help-wanted
tag:huge-data
tag:meta
tag:more-info
tag:next
tag:no-stale
tag:requires-migrations
tag:research
tag:security 🛡️
tag:stale
tag:waiting-for-assignee
type:bug
type:documentation
type:enhancement
type:meta
type:ux
user:cli
user:web
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/shiori#3
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @x2764tech on GitHub (Mar 1, 2018).
Original GitHub issue: https://github.com/go-shiori/shiori/issues/5
This looks like a great project, but it would be really useful to run this on Windows (I can use a wrapper to either run it as a service or on login)
Would it be possible to add a Windows build in the releases?
@RadhiFadlillah commented on GitHub (Mar 1, 2018):
Yes, it's possible since Go make cross compile really easy. However, right now I don't have any access to Windows PC since I'm using Linux as main workstation, so I will do it later I guess.
@arendtio commented on GitHub (Mar 2, 2018):
Well, I stumbled upon this one and thought: "That should be a no brainer" and started
env GOOS=windows GOARCH=386 go get github.com/RadhiFadlillah/shioriAnd in fact it resulted in a shiori.exe which I transfered to a windows machine and started it:
go-sqlite3 requires cgo to workSo it ain't that easy, because go-sqlite requires some C library which is not go code and therefore not that easy to cross compile. If someone wants to try it at a later point, I came across that reddit post
https://www.reddit.com/r/golang/comments/3tx2a5/how_do_i_build_a_cross_platform_go_program/
but as I don't want to install
mingw32right now that is something someone else should check out ;-)@intabulas commented on GitHub (Mar 5, 2018):
I would suggest something like goreleaser (https://github.com/goreleaser/goreleaser) which will cross compile, upload to github releases and generate homebrew tap for those on OSX
@DWSR commented on GitHub (Mar 9, 2018):
@arendtio @RadhiFadlillah I was able to successfully build this for Windows under WSL. I have added the instructions to the README via #68 in the hopes that it can help provide some guidance.
@Shadesss commented on GitHub (May 21, 2018):
Would love shiori for windows!
@RadhiFadlillah commented on GitHub (Jul 31, 2018):
Since the Windows binary has been available in v1.0, I will close this issue for now.