chore(deps): bump clap from 4.5.20 to 4.5.23 #915
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
# This file is part of masscanned. | |
# Copyright 2021 - 2024 The IVRE project | |
# | |
# Masscanned is free software: you can redistribute it and/or modify it | |
# under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or | |
# (at your option) any later version. | |
# | |
# Masscanned is distributed in the hope that it will be useful, but WITHOUT | |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY | |
# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public | |
# License for more details. | |
# | |
# You should have received a copy of the GNU General Public License | |
# along with Masscanned. If not, see <http://www.gnu.org/licenses/>. | |
name: Build masscanned | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v2 | |
- name: Get Rust toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
- name: Run cargo fmt | |
uses: actions-rs/cargo@v1 | |
with: | |
command: fmt | |
args: -- --check | |
- name: Install packages for build | |
run: sudo apt-get -q update && sudo apt-get -qy install libpcap-dev | |
- name: Run cargo build | |
uses: actions-rs/cargo@v1 | |
with: | |
command: build | |
- name: Run cargo test | |
uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
- name: Create build archive | |
run: tar cf masscanned.tar target/debug/masscanned | |
- name: Upload binary | |
uses: actions/upload-artifact@v4 | |
with: | |
name: masscanned.tar | |
path: masscanned.tar | |
test: | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v2 | |
- name: Get binary | |
uses: actions/download-artifact@v4 | |
with: | |
name: masscanned.tar | |
- name: Extract build archive | |
run: tar xf masscanned.tar | |
- name: Use Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.9 | |
- name: Install dependencies | |
run: sudo pip install -U -r test/requirements.txt | |
- name: Install linting tools | |
run: sudo pip install -U flake8 black | |
- name: Install packages for tests | |
run: sudo apt-get -q update && sudo apt-get -qy install nmap rpcbind smbclient | |
- name: Run black | |
run: black -t py36 --check test/test_masscanned.py test/src/ | |
- name: Run flake8 | |
run: flake8 --ignore=E266,E501,W503 test/test_masscanned.py test/src/ | |
- name: Run tests | |
run: sudo python test/test_masscanned.py | |
- name: Display logs | |
run: echo STDOUT; cat test/res/masscanned.stdout && echo && echo STDERR && cat test/res/masscanned.stderr | |
if: failure() | |
docker: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v2 | |
- name: Build archive | |
run: git archive --format=tar --prefix=masscanned-master/ HEAD -o docker/masscanned.tar | |
- name: Build image | |
uses: docker/build-push-action@v5 | |
with: | |
push: false | |
context: docker/ | |
file: docker/Dockerfile-local |