Automatic SootWrapper Installation #1682
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
cli: | |
name: CLI | |
strategy: | |
matrix: | |
os: [ 'ubuntu-latest', 'windows-latest', 'macos-13' ] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Set git to use LF | |
run: | | |
git config --global core.autocrlf input | |
git config --global core.eol lf | |
- uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.20' | |
- name: Install Bower | |
run: | | |
npm install --global bower | |
bower -v | |
- name: Pull Supported Formats | |
run: | | |
cd cmd/debricked | |
go generate -v -x | |
- name: Build | |
run: go build -v ./... | |
- name: Test | |
run: bash scripts/test_cli.sh | |
env: | |
TEST_COVERAGE_THRESHOLD: 90 | |
- name: Upload coverage report | |
uses: actions/upload-artifact@v4 | |
if: ${{ matrix.os == 'ubuntu-latest' }} | |
with: | |
name: coverage.html | |
path: coverage.html | |
retention-days: 2 | |
- name: E2E - resolve | |
if: ${{ matrix.os == 'ubuntu-latest' }} | |
run: bash scripts/test_e2e.sh resolver | |
- name: E2E - scan | |
run: go run cmd/debricked/main.go scan internal/file/testdata/misc -e requirements.txt -t ${{ secrets.DEBRICKED_TOKEN }} -r debricked/cli-test -c E2E-test-${{ github.run_id }}-${{ github.run_number }}-${{ github.run_attempt }} | |
reach-analysis-e2e: | |
name: Reachability Analysis E2E | |
strategy: | |
matrix: | |
os: [ 'ubuntu-latest', 'macos-latest', 'windows-latest' ] | |
java: [11, 17, 20] | |
fail-fast: false | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.20' | |
- name: Pull Supported Formats | |
run: | | |
cd cmd/debricked | |
go generate -v -x | |
- name: Build | |
run: go build -v ./... | |
- name: Set up Java ${{matrix.java}} | |
uses: actions/setup-java@v4 | |
with: | |
java-version: ${{matrix.java}} | |
distribution: 'temurin' | |
- name: Install Debricked CLI | |
run: | | |
go install -ldflags "-X main.version=${DEBRICKED_VERSION:-GITHUB_REF#refs/heads/}" ./cmd/debricked | |
- name: Callgraph E2E | |
run: ./scripts/test_e2e_callgraph_java_version.sh ${{matrix.java}} | |
docker-resolve: | |
name: Docker E2E Resolve | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
docker-os: ['alpine', 'debian'] | |
steps: | |
- uses: actions/checkout@v4 | |
# Pull from debian and re-tag to match cache | |
- name: Pull Image; Debian | |
if: ${{ matrix.docker-os == 'debian' }} | |
run: docker pull debricked/cli:latest-resolution-debian || true | |
- name: Pull Image; Alpine | |
if: ${{ matrix.docker-os == 'alpine' }} | |
run: docker pull debricked/cli:latest-resolution || true | |
- name: Build Docker image | |
if: ${{ matrix.docker-os == 'debian' }} | |
run: docker build -f build/docker/${{ matrix.docker-os }}.Dockerfile -t debricked/cli:resolution-test --cache-from debricked/cli:latest-resolution-debian --target resolution . | |
- name: Build Docker image | |
if: ${{ matrix.docker-os == 'alpine' }} | |
run: docker build -f build/docker/${{ matrix.docker-os }}.Dockerfile -t debricked/cli:resolution-test --cache-from debricked/cli:latest-resolution --target resolution . | |
- name: Resolve with Docker | |
run: docker run -v $(pwd):/root debricked/cli:resolution-test debricked resolve test/resolve | |
- name: Test if resolved | |
run: bash test/checkFilesResolved.sh | |
golangci: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: '1.20' | |
- name: Pull Supported Formats | |
run: | | |
cd cmd/debricked | |
go generate -v -x | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v4 | |
with: | |
version: v1.52 |