-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
34 additions
and
31 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,38 @@ | ||
on: | ||
push: | ||
push: | ||
jobs: | ||
build: | ||
name: Build exectuable 📦 | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.9" | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
python -m pip install -r requirements.txt pyinstaller | ||
- name: Build binary 🔢 | ||
run: pyinstaller "main.spec" | ||
- name: Run conversion ↩️ | ||
run: | | ||
.\dist\ms_teams_parser.exe -f ".\forensicsim-data\jane_doe_old_teams\IndexedDB\https_teams.microsoft.com_0.indexeddb.leveldb" -o "jane_doe_old_teams.json" | ||
.\dist\ms_teams_parser.exe -f ".\forensicsim-data\john_doe_old_teams\IndexedDB\https_teams.microsoft.com_0.indexeddb.leveldb" -o "john_doe_old_teams.json" | ||
.\dist\ms_teams_parser.exe -f ".\forensicsim-data\mboufahja_new_teams\IndexedDB\https_teams.microsoft.com_0.indexeddb.leveldb" -o "mboufahja_new_teams.json" | ||
- name: Test calling script 📞 | ||
run: | | ||
python utils/dump_leveldb.py --help | ||
python utils/dump_localstorage.py --help | ||
python utils/dump_sessionstorage.py --help | ||
build: | ||
name: Build exectuable 📦 | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.9" | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
python -m pip install -r requirements.txt pyinstaller | ||
- name: Build binary 🔢 | ||
run: pyinstaller "main.spec" | ||
- name: Run conversion ↩️ | ||
run: | | ||
.\dist\ms_teams_parser.exe -f ".\forensicsim-data\jane_doe_v_1_4_00_11161\IndexedDB\https_teams.microsoft.com_0.indexeddb.leveldb" -o "jane_doe.json" | ||
.\dist\ms_teams_parser.exe -f ".\forensicsim-data\john_doe_v_1_4_00_11161\IndexedDB\https_teams.microsoft.com_0.indexeddb.leveldb" -o "john_doe.json" | ||
.\dist\ms_teams_parser.exe -f ".\forensicsim-data\karelze_v_23306_3309_2530_1346\IndexedDB\https_teams.microsoft.com_0.indexeddb.leveldb" -o "john_doe.json" | ||
.\dist\ms_teams_parser.exe -f ".\forensicsim-data\mboufahja_v_23231_413_2355_7555\IndexedDB\https_teams.microsoft.com_0.indexeddb.leveldb" -o "john_doe.json" | ||
continue-on-error: true | ||
- name: Test calling script 📞 | ||
run: | | ||
python utils/dump_leveldb.py --help | ||
python utils/dump_localstorage.py --help | ||
python utils/dump_sessionstorage.py --help | ||
continue-on-error: true | ||
# python utils/populate_teams.py --help | ||
# python utils/populate_teams_2.py --help | ||
# python utils/populate_skype.py --help | ||
# - name: Calculate diff 👽 | ||
# run: git diff --no-index --word-diff expected_output/john_doe.json current_output.json | ||
# - name: Calculate diff 👽 | ||
# run: git diff --no-index --word-diff expected_output/john_doe.json current_output.json |
Submodule forensicsim-data
updated
from 68a144 to 36e337