Skip to content

Commit 0b3ae30

Browse files
committed
Add ci test
1 parent 34947ff commit 0b3ae30

1 file changed

Lines changed: 33 additions & 0 deletions

File tree

.github/workflows/test2.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
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

0 commit comments

Comments
 (0)