File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : test2.yml
2+
3+ on :
4+ workflow_dispatch :
5+ push :
6+ branches : [master]
7+
8+ jobs :
9+ ssc-ci-test :
10+ if : true
11+ strategy :
12+ fail-fast : false
13+ matrix :
14+ include :
15+ - os : ubuntu-latest
16+ fcli_url : https://github.com/fortify/fcli/releases/download/dev_feat.ci-updates/fcli-linux.tgz
17+ - os : windows-latest
18+ fcli_url : https://github.com/fortify/fcli/releases/download/dev_feat.ci-updates/fcli-windows.zip
19+ - os : macos-latest
20+ fcli_url : https://github.com/fortify/fcli/releases/download/dev_feat.ci-updates/fcli-mac.tgz
21+ runs-on : ${{ matrix.os }}
22+ steps :
23+ - name : Check Out Source Code
24+ uses : actions/checkout@v4
25+ - name : Setup fcli & sc-client
26+ uses : fortify/github-action@feat/fcli-ci
27+ env :
28+ FCLI_URL : ${{ matrix.fcli_url }}
29+ SSC_URL : ${{ vars.FH_DEMO_SSC_URL }}
30+ SSC_USER : ${{secrets.FH_DEMO_SSC_USER}}
31+ SSC_PASSWORD : ${{secrets.FH_DEMO_SSC_PWD}}
32+ SC_SAST_TOKEN : ${{secrets.FH_DEMO_SC_SAST_TOKEN}}
33+ SSC_APPVERSION : GitHub:EightBall
You can’t perform that action at this time.
0 commit comments