File tree Expand file tree Collapse file tree 3 files changed +31
-1
lines changed
Expand file tree Collapse file tree 3 files changed +31
-1
lines changed Original file line number Diff line number Diff line change 11steps :
2+ - label : " fossa analyze"
3+ agents :
4+ queue : " init"
5+ docker : " *"
6+ command : " .buildkite/scripts/fossa.sh"
27 - label : " :java: Unit test with test services"
38 agents :
49 queue : " workers"
2833 - docker-compose#v3.0.0:
2934 run : unit-test-docker-sticky-off
3035 config : docker/buildkite/docker-compose.yaml
31- - wait
36+ - wait
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ set -exo pipefail
4+
5+ curl -H ' Cache-Control: no-cache' https://raw.githubusercontent.com/fossas/fossa-cli/master/install.sh | bash -s -- -b ~ /
6+
7+ ~ /fossa init
8+ ~ /fossa analyze
9+
10+ # Capture the exit status
11+ EXIT_STATUS=$?
12+
13+ echo " fossa script exits with status $EXIT_STATUS "
14+ exit $EXIT_STATUS
Original file line number Diff line number Diff line change 1+ version : 2
2+ cli :
3+ server : https://app.fossa.com
4+ fetcher : custom
5+ project : git@github.com:uber/cadence-java-client.git
6+ analyze :
7+ modules :
8+ - name : .
9+ type : gradle
10+ target : ' :'
11+ path : .
You can’t perform that action at this time.
0 commit comments