We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1be772b commit 80d3ca6Copy full SHA for 80d3ca6
2 files changed
.vscode/tasks.json
@@ -4,7 +4,7 @@
4
{
5
"label": "build",
6
"type": "shell",
7
- "command": "swift build -Xswiftc -Xfrontend -Xswiftc -sil-verify-none",
+ "command": "swift build",
8
"group": {
9
"kind": "build",
10
"isDefault": true
@@ -16,7 +16,7 @@
16
17
"label": "buildtests",
18
19
- "command": "swift build -Xswiftc -Xfrontend -Xswiftc -sil-verify-none --build-tests"
+ "command": "swift build --build-tests"
20
}
21
]
22
Dockerfile
@@ -25,7 +25,7 @@ WORKDIR /build
25
COPY . .
26
27
# Build everything, with optimizations
28
-RUN swift build -Xswiftc -Xfrontend -Xswiftc -sil-verify-none -c release
+RUN swift build -c release
29
30
# Switch to the staging area
31
WORKDIR /staging
0 commit comments