Container slices tests #13
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: Container slices tests | |
on: | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
ruby-samples: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: ["ubuntu-24.04", "ubuntu-24.04-arm"] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: setup paths | |
run: | | |
mkdir -p repotests | |
mkdir -p rubyresults | |
- uses: actions/checkout@v4 | |
with: | |
repository: 'campsite/campsite' | |
path: 'repotests/campsite' | |
ref: '10197238bbbefd9c9ac7c77467b647fd93993ba0' | |
- uses: actions/checkout@v4 | |
with: | |
repository: 'bionomia/bionomia' | |
path: 'repotests/bionomia' | |
ref: '5ada8b5f4a5f68561a7195e2badc2f744dc4676e' | |
- uses: actions/checkout@v4 | |
with: | |
repository: 'OWASP/railsgoat' | |
path: 'repotests/railsgoat' | |
ref: 'c1e8ff1e3b24a1c48fcfc9fbee0f65dc296b49d9' | |
- name: generate usages sbom - bionomia | |
run: | | |
mkdir -p $GITHUB_WORKSPACE/rubyresults/bionomia | |
cd repotests/bionomia | |
docker run --rm -v /tmp:/tmp -v $(pwd):/app:rw -t ghcr.io/appthreat/atom:main atom --help | |
docker run --rm -v /tmp:/tmp -v $(pwd):/app:rw -t ghcr.io/appthreat/atom:main rbastgen --help | |
docker run --rm -v /tmp:/tmp -v $(pwd):/app:rw -t ghcr.io/appthreat/atom:main atom usages -l ruby -o /app/app.atom -s /app/usages.slices.json /app | |
ls -lh | |
cp *.slices.json $GITHUB_WORKSPACE/rubyresults/bionomia | |
- name: generate usages sbom - railsgoat | |
run: | | |
mkdir -p $GITHUB_WORKSPACE/rubyresults/railsgoat | |
cd repotests/railsgoat | |
docker run --rm -v /tmp:/tmp -v $(pwd):/app:rw -t ghcr.io/appthreat/atom:main atom usages --extract-endpoints -l ruby -o /app/app.atom -s /app/usages.slices.json /app | |
ls -lh | |
cp *.slices.json $GITHUB_WORKSPACE/rubyresults/railsgoat | |
- name: generate usages sbom - campsite | |
run: | | |
mkdir -p $GITHUB_WORKSPACE/rubyresults/campsite | |
cd repotests/campsite/api | |
docker run --rm -v /tmp:/tmp -v $(pwd):/app:rw -t ghcr.io/appthreat/atom:main atom usages -l ruby -o /app/app.atom -s /app/usages.slices.json /app | |
ls -lh | |
cp *.slices.json $GITHUB_WORKSPACE/rubyresults/campsite | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: rubyresults | |
path: rubyresults | |
npm-latest-tests: | |
runs-on: ubuntu-24.04 | |
permissions: | |
contents: read | |
steps: | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '23.x' | |
registry-url: https://registry.npmjs.org/ | |
- uses: coursier/cache-action@v6 | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '21' | |
- name: Install atom latest | |
run: | | |
npm install -g @appthreat/atom | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '3.4.1' | |
bundler-cache: false | |
- name: Check rbastgen 3.4.1 | |
run: | | |
rbastgen --help |