Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
Docker Machine
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
SmartDataLab
public
applications
Docker Machine
Commits
1e3b6b64
Unverified
Commit
1e3b6b64
authored
Mar 29, 2018
by
David Gageot
Committed by
GitHub
Mar 29, 2018
Browse files
Options
Downloads
Plain Diff
Merge pull request #4421 from nogoegst/openbsd-amd64-ci
Add OpenBSD/amd64 crossbuild to CI scripts
parents
9715a12e
07f12794
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitlab-ci.yml
+2
-1
2 additions, 1 deletion
.gitlab-ci.yml
.travis.yml
+2
-1
2 additions, 1 deletion
.travis.yml
mk/build.mk
+2
-1
2 additions, 1 deletion
mk/build.mk
with
6 additions
and
3 deletions
.gitlab-ci.yml
+
2
−
1
View file @
1e3b6b64
...
...
@@ -40,8 +40,9 @@ before_script:
<<
:
*build_base
script
:
make build-x
linux amd64
:
*build_validate
darwin amd64
:
*build_x
linux amd64
:
*build_validate
openbsd amd64
:
*build_x
windows amd64
:
*build_x
linux arm
:
*build_x
linux arm64
:
*build_x
...
...
This diff is collapsed.
Click to expand it.
.travis.yml
+
2
−
1
View file @
1e3b6b64
...
...
@@ -4,8 +4,9 @@ language: bash
services
:
docker
env
:
matrix
:
-
TARGET_OS=linux TARGET_ARCH=amd64 TARGETS="build validate"
-
TARGET_OS=darwin TARGET_ARCH=amd64 TARGETS="build-x"
-
TARGET_OS=linux TARGET_ARCH=amd64 TARGETS="build validate"
-
TARGET_OS=openbsd TARGET_ARCH=amd64 TARGETS="build-x"
-
TARGET_OS=windows TARGET_ARCH=amd64 TARGETS="build-x"
-
TARGET_OS=linux TARGET_ARCH=arm TARGETS="build-x"
-
TARGET_OS=linux TARGET_ARCH=arm64 TARGETS="build-x"
...
...
This diff is collapsed.
Click to expand it.
mk/build.mk
+
2
−
1
View file @
1e3b6b64
extension
=
$(
patsubst windows,.exe,
$(
filter windows,
$(
1
)))
# Valid target combinations
VALID_OS_ARCH
:=
"[darwin/amd64][linux/amd64][linux/arm][linux/arm64][windows/amd64][windows/386]"
VALID_OS_ARCH
:=
"[darwin/amd64][linux/amd64][linux/arm][linux/arm64][
openbsd/amd64][
windows/amd64][windows/386]"
os.darwin
:=
Darwin
os.linux
:=
Linux
os.openbsd
:=
OpenBSD
os.windows
:=
Windows
arch.amd64
:=
x86_64
...
...
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