Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openxt
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
msc
openxt
Commits
872e1cc2
There was an error fetching the commit references. Please try again later.
Commit
872e1cc2
authored
3 years ago
by
Recolic K
Browse files
Options
Downloads
Patches
Plain Diff
dockerfile
parent
2bb20199
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.gitignore
+1
-0
1 addition, 0 deletions
.gitignore
Dockerfile
+13
-0
13 additions, 0 deletions
Dockerfile
main.go
+1
-1
1 addition, 1 deletion
main.go
tools/build-and-pack.sh
+8
-4
8 additions, 4 deletions
tools/build-and-pack.sh
with
23 additions
and
5 deletions
.gitignore
+
1
−
0
View file @
872e1cc2
...
...
@@ -3,3 +3,4 @@
openxt
*.tar.gz
bin/
This diff is collapsed.
Click to expand it.
Dockerfile
0 → 100644
+
13
−
0
View file @
872e1cc2
######## Docker build guide
# tools/build-and-pack.sh linux64-only
# sudo docker build -f Dockerfile -t recolic/openxt .
# Requires dotnet-core 5.0.x. dotnet 3.x can not build .net framework project.
from
mcr.microsoft.com/dotnet/sdk:5.0
copy
*.tar.gz /tmp
run
cd
/tmp
&&
tar
xvzf openxt
*
.tar.gz
&&
cp
bin/
*
/usr/bin/
run
openxt
||
echo
""
This diff is collapsed.
Click to expand it.
main.go
+
1
−
1
View file @
872e1cc2
...
...
@@ -10,7 +10,7 @@ import (
// Some options here. Would be improved in beta release.
const
DEDUCT_PKGNAME_FROM_VARNAME
=
true
const
USE_PROJECT_NETVER_INSTEAD_OF_HINTPATH_NETVER
=
false
const
OPENXT_VERSION
=
"1.3-
1
"
const
OPENXT_VERSION
=
"1.3-
2
"
func
print_help_and_exit
()
{
println
(
"Usage: openxt <subcommand> [options...]"
)
...
...
This diff is collapsed.
Click to expand it.
tools/build-and-pack.sh
+
8
−
4
View file @
872e1cc2
...
...
@@ -11,12 +11,15 @@ function build () {
arch
=
"
$2
"
echo
"Building OpenXT
$version
for
$os
:
$arch
..."
[[
"
$os
"
=
"
windows
"
]]
&&
bin_tail
=
".exe"
||
bin_tail
=
""
[[
"
$os
"
=
windows
]]
&&
bin_tail
=
".exe"
||
bin_tail
=
""
rm
-rf
bin/
GOOS
=
"
$os
"
GOARCH
=
"
$arch
"
go build
-o
"bin/openxt
$bin_tail
"
.
&&
GOOS
=
"
$os
"
GOARCH
=
"
$arch
"
go build
-o
"bin/csproj-to-5
$bin_tail
"
tools/csproj-to-5/main.go
&&
GOOS
=
"
$os
"
GOARCH
=
"
$arch
"
go build
-o
"bin/nuget-download-package
$bin_tail
"
tools/nuget-download-package/main.go tools/nuget-download-package/unzip.go
&&
# Static compilation for linux
[[
"
$os
"
=
linux
]]
&&
xtra_flags
=(
-ldflags
'-extldflags "-static"'
)
&&
export
CGO_ENABLED
=
0
||
xtra_flags
=()
GOOS
=
"
$os
"
GOARCH
=
"
$arch
"
go build
"
${
xtra_flags
[@]
}
"
-o
"bin/openxt
$bin_tail
"
.
&&
GOOS
=
"
$os
"
GOARCH
=
"
$arch
"
go build
"
${
xtra_flags
[@]
}
"
-o
"bin/csproj-to-5
$bin_tail
"
tools/csproj-to-5/main.go
&&
GOOS
=
"
$os
"
GOARCH
=
"
$arch
"
go build
"
${
xtra_flags
[@]
}
"
-o
"bin/nuget-download-package
$bin_tail
"
tools/nuget-download-package/main.go tools/nuget-download-package/unzip.go
&&
tar
cvzf
"openxt-
$version
-
$os
-
$arch
.tar.gz"
bin
return
$?
...
...
@@ -24,6 +27,7 @@ function build () {
# Just add architectures you want. Run `go tool dist list` for available architectures.
build linux amd64
[[
"
$1
"
=
"linux64-only"
]]
&&
exit
0
build linux 386
build linux arm
build linux arm64
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment