Test flatpak #37
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: CI | |
on: [push, pull_request] | |
jobs: | |
whitespace-errors: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: flatpak | |
run: | | |
sudo apt -y install flatpak | |
flatpak install -y --user https://dl.flathub.org/build-repo/160962/com.openwall.John.flatpakref | |
flatpak run com.openwall.John -list=build-info | |
flatpak run com.openwall.John -list=format-tests | cut -f3 > ~/allTests.in | |
flatpak run com.openwall.John --format=SHA512crypt --max-run=100 ~/allTests.in | |
flatpak run com.openwall.John --format=SHA*crypt --test=0 |