File tree 3 files changed +31
-1
lines changed
3 files changed +31
-1
lines changed Original file line number Diff line number Diff line change 1
1
steps :
2
+ - label : " fossa analyze"
3
+ agents :
4
+ queue : " init"
5
+ docker : " *"
6
+ command : " .buildkite/scripts/fossa.sh"
2
7
- label : " :java: Unit test with test services"
3
8
agents :
4
9
queue : " workers"
28
33
- docker-compose#v3.0.0:
29
34
run : unit-test-docker-sticky-off
30
35
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 :
[email protected] :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