Updated on 2024-11-21 GMT+08:00

Building with sbt

Build a Scala or Java project with sbt.

Build on GUI

Add Build with sbt, when configuring build actions. Set the parameters according to Table 1.

Table 1 Parameters for building with sbt

Parameter

Description

Action Name

Assign a custom name to the build action. The name can contain:

  • Letters, digits, hyphens (-), underscores (_), commas (,), semicolons (;), colons (:), periods (.), slashes (/), and parentheses.
  • 1 to 128 characters.

Tool Version

Only the default version sbt1.3.2-jdk1.8 is supported currently.

Commands

Configure the sbt commands, or use the default ones. If you have special build requirements, enter your custom build script in the text box. For more commands, see the sbt official website.

Continue After Failure

Specify whether to proceed after the current action fails by setting the parameter to either Yes or No.

Build with Code

Modify the code in the BUILD block in Creating a YAML File for Your Code-based Build by referring to the following sample code:

1
2
3
4
5
6
7
8
version: 2.0 # The value must be 2.0.
steps:
  BUILD:
    - sbt:
        inputs:
            command: |
                sbt package
            ignore_fail: true
Table 2 Parameters in the sample code

Parameter

Type

Description

command

String

Configure the sbt commands. For more commands, see the sbt official website.

ignore_fail

String

Whether to proceed after the current action fails.
  • true: Yes
  • Empty: No