You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-`buildBinaryPlatformDebug` - produces `./out/debug/app-...` with platform specific information encoded in the name (e.g. `./out/debug/app-aarch64-apple-darwin`)
14
+
-`buildBinaryPlatformRelease` - produces `./out/release/app-...` with platform specific information encoded in the name (e.g. `./out/release/app-aarch64-apple-darwin`)
15
+
16
+
Github workflows:
17
+
- Main branch merges and PRs: CI ([ci.yml](./.github/workflows/ci.yml)) – just makes sure that `buildBinaryDebug` succeeds on all platforms
18
+
- Tags: release ([release.yml](./.github/workflows/release.yml)) – builds platform specific binary using `buildBinaryPlatformRelease` and uploads all
This template includes very basic setup for debugging with VS Code and [CodeLLDB extension](https://marketplace.visualstudio.com/items?itemName=vadimcn.vscode-lldb).
26
37
27
-
You should have a `Debug` configuration available, which will automatically build a binary by invoking `sbtn buildBinary` command -
38
+
You should have a `Debug` configuration available, which will automatically build a binary by invoking `sbtn buildBinaryDebug` command -
28
39
so make sure you have sbtn installed (run `sbt installSbtn`).
29
40
30
41
Please note that debugging information in Scala Native is very experimental, so don't expect a rich debugging experience you can
0 commit comments