Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
72 changes: 36 additions & 36 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build
name: Build

on:
push:
Expand Down Expand Up @@ -92,38 +92,38 @@ jobs:
command: clippy
args: -- -D warnings

flask:
name: Test against flask server
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v1

- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true

- name: Install python dependencies
run: |
python3 -m pip install setuptools
python3 -m pip install -r test/requirements.txt

- name: Start server
run: |
python3 test/flask-server.py &
python3 test/aio-chunk-server.py &

- name: Run Dirble
run: |
cargo run -- \
-u http://localhost:5000 \
-u http://localhost:5001 \
-w dirble_wordlist.txt \
-w test/flask_wordlist.txt \
-o test-output.txt

- name: Check that the output is correct
run: |
bash test/check-output-file.sh test-output.txt
# flask:
# name: Test against flask server
# runs-on: ubuntu-latest
# steps:
# - name: Checkout sources
# uses: actions/checkout@v1

# - name: Install stable toolchain
# uses: actions-rs/toolchain@v1
# with:
# toolchain: stable
# override: true

# - name: Install python dependencies
# run: |
# python3 -m pip install setuptools
# python3 -m pip install -r test/requirements.txt

# - name: Start server
# run: |
# python3 test/flask-server.py &
# python3 test/aio-chunk-server.py &

# - name: Run Dirble
# run: |
# cargo run -- \
# -u http://localhost:5000 \
# -u http://localhost:5001 \
# -w dirble_wordlist.txt \
# -w test/flask_wordlist.txt \
# -o test-output.txt

# - name: Check that the output is correct
# run: |
# bash test/check-output-file.sh test-output.txt
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Changelog

## Unreleased

## 1.4.2 - 2019-07-09

### Added
Expand Down
Loading
Loading