Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
Curio
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
Package registry
Container 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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jim Wallace
Curio
Commits
1a377556
Commit
1a377556
authored
1 year ago
by
Mingchung Xia
Browse files
Options
Downloads
Patches
Plain Diff
Remove visualizer for pipeline only
parent
f40cb0b2
No related branches found
No related tags found
1 merge request
!13
HNSW Implementation with Testcases
Pipeline
#114981
passed with warnings
1 year ago
Stage: build
Stage: test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+2
-2
2 additions, 2 deletions
.gitlab-ci.yml
Package.swift
+10
-8
10 additions, 8 deletions
Package.swift
with
12 additions
and
10 deletions
.gitlab-ci.yml
+
2
−
2
View file @
1a377556
...
@@ -10,7 +10,7 @@ build-macOS:
...
@@ -10,7 +10,7 @@ build-macOS:
stage
:
build
stage
:
build
script
:
script
:
-
swift build
--target SwiftNLP
-c release -Xswiftc -cross-module-optimization -Xlinker -framework -Xlinker CoreML
-
swift build -c release -Xswiftc -cross-module-optimization -Xlinker -framework -Xlinker CoreML
tags
:
tags
:
-
macOS
-
macOS
...
@@ -31,7 +31,7 @@ build-linux:
...
@@ -31,7 +31,7 @@ build-linux:
script
:
script
:
-
swiftly install latest
-
swiftly install latest
-
swift build
--target SwiftNLP
-c release -Xswiftc -cross-module-optimization
-
swift build -c release -Xswiftc -cross-module-optimization
tags
:
tags
:
-
linux
-
linux
...
...
This diff is collapsed.
Click to expand it.
Package.swift
+
10
−
8
View file @
1a377556
...
@@ -13,10 +13,11 @@ let package = Package(
...
@@ -13,10 +13,11 @@ let package = Package(
name
:
"SwiftNLP"
,
name
:
"SwiftNLP"
,
targets
:
[
"SwiftNLP"
]
targets
:
[
"SwiftNLP"
]
),
),
.
executable
(
/// This is commented out to fix the gitlab pipeline, but must be uncommented when in use on macOS only.
name
:
"SwiftNLPVisualizer"
,
// .executable(
targets
:
[
"SwiftNLPVisualizer"
]
// name: "SwiftNLPVisualizer",
),
// targets: ["SwiftNLPVisualizer"]
// ),
],
],
dependencies
:
[
dependencies
:
[
.
package
(
url
:
"https://github.com/L1MeN9Yu/Elva"
,
.
upToNextMajor
(
from
:
"2.1.3"
)),
.
package
(
url
:
"https://github.com/L1MeN9Yu/Elva"
,
.
upToNextMajor
(
from
:
"2.1.3"
)),
...
@@ -43,9 +44,10 @@ let package = Package(
...
@@ -43,9 +44,10 @@ let package = Package(
dependencies
:
[
"SwiftNLP"
],
dependencies
:
[
"SwiftNLP"
],
resources
:
[
.
process
(
"Resources"
)]
resources
:
[
.
process
(
"Resources"
)]
),
),
.
executableTarget
(
/// This is commented out to fix the gitlab pipeline, but must be uncommented when in use on macOS only.
name
:
"SwiftNLPVisualizer"
,
// .executableTarget(
dependencies
:
[
"SwiftNLP"
]
// name: "SwiftNLPVisualizer",
),
// dependencies: ["SwiftNLP"]
// ),
]
]
)
)
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