Skip to content

Commit

Permalink
Remove unused build flags (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
PSchmiedmayer committed Aug 24, 2021
1 parent 1be772b commit 80d3ca6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
{
"label": "build",
"type": "shell",
"command": "swift build -Xswiftc -Xfrontend -Xswiftc -sil-verify-none",
"command": "swift build",
"group": {
"kind": "build",
"isDefault": true
Expand All @@ -16,7 +16,7 @@
{
"label": "buildtests",
"type": "shell",
"command": "swift build -Xswiftc -Xfrontend -Xswiftc -sil-verify-none --build-tests"
"command": "swift build --build-tests"
}
]
}
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ WORKDIR /build
COPY . .

# Build everything, with optimizations
RUN swift build -Xswiftc -Xfrontend -Xswiftc -sil-verify-none -c release
RUN swift build -c release

# Switch to the staging area
WORKDIR /staging
Expand Down

0 comments on commit 80d3ca6

Please sign in to comment.