github.com/secure-build/gitlab-runner@v12.5.0+incompatible/executors/custom/api/const.go (about)

     1  package api
     2  
     3  const (
     4  	// The name of the variable used to pass the value of Build failure exit code
     5  	// that should be returned from Custom executor driver
     6  	BuildFailureExitCodeVariable = "BUILD_FAILURE_EXIT_CODE"
     7  
     8  	// The name of the variable used to pass the value of System failure exit code
     9  	// that should be returned from Custom executor driver
    10  	SystemFailureExitCodeVariable = "SYSTEM_FAILURE_EXIT_CODE"
    11  )