Skip to content

Commit

Permalink
actions: add performance comparison to checksec.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
Wenzel committed Oct 25, 2020
1 parent 00efd25 commit 990dc4a
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,32 @@ jobs:
- name: Run smoke test
run: checksec /usr/lib

performance:
needs: build
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1

- name: Set up Python 3.6 🐍
uses: actions/setup-python@v1
with:
python-version: '3.6'

- name: Install package 📦
run: python -m pip install .

- name: install checksec.sh
run: |
sudo wget 'https://raw.githubusercontent.com/slimm609/checksec.sh/master/checksec' -O /usr/local/bin/checksec.sh
chmod +x /usr/local/bin/checksec.sh
- name: checksec.sh /usr/lib
run: find /usr/lib -type d -exec checksec.sh --dir="{}" --output=json \;

- name: checksec.py /usr/lib
run: checksec /usr/lib -r -j

release:
needs: test

Expand Down

0 comments on commit 990dc4a

Please sign in to comment.