Skip to content

Commit

Permalink
Code review: 343260043: Updated Windows release build script to inclu…
Browse files Browse the repository at this point in the history
…de YAML files #1917
  • Loading branch information
joachimmetz committed Jun 13, 2018
1 parent a563c24 commit b1f1383
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 5 deletions.
4 changes: 2 additions & 2 deletions config/dpkg/changelog
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plaso (20180609-1) unstable; urgency=low
plaso (20180613-1) unstable; urgency=low

* Auto-generated

-- Log2Timeline <log2timeline-dev@googlegroups.com> Sat, 09 Jun 2018 21:13:19 +0200
-- Log2Timeline <log2timeline-dev@googlegroups.com> Wed, 13 Jun 2018 18:39:24 +0200
2 changes: 2 additions & 0 deletions config/windows/make_check.bat
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,5 @@ dist\plaso\log2timeline.exe --info
dist\plaso\pinfo.exe -v test_data\psort_test.json.plaso
dist\plaso\psort.exe

dist\plaso\log2timeline.exe dist\test.plaso test_data

19 changes: 17 additions & 2 deletions config/windows/make_release.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -187,9 +187,24 @@ rm -Force dist\plaso\licenses\LICENSE.mock
rm -Force dist\plaso\licenses\LICENSE.pbr

# Copy the artifacts yaml files
git.exe clone https://github.com/ForensicArtifacts/artifacts dist\artifacts
git.exe clone https://github.com/ForensicArtifacts/artifacts.git dist\artifacts
mkdir dist\plaso\artifacts
xcopy /q /y dist\artifacts\data\* dist\plaso\artifacts
xcopy /q /y dist\artifacts\data\*.yaml dist\plaso\artifacts

# Copy the dfVFS yaml (dtFabric definition) files
git.exe clone https://github.com/log2timeline/dfvfs.git dist\dfvfs
mkdir dist\plaso\dfvfs\lib
xcopy /q /y dist\dfvfs\dfvfs\lib\*.yaml dist\plaso\dfvfs\lib

# Copy the dfWinReg yaml (dtFabric definition) files
git.exe clone https://github.com/log2timeline/dfwinreg.git dist\dfwinreg
mkdir dist\plaso\dfwinreg
xcopy /q /y dist\dfwinreg\dfwinreg\*.yaml dist\plaso\dfwinreg

# Copy the plaso yaml (dtFabric definition) files
xcopy /q /y parsers\*.yaml dist\plaso\plaso\parsers
xcopy /q /y parsers\olecf_plugins\*.yaml dist\plaso\plaso\parsers\olecf_plugins
xcopy /q /y parsers\winreg_plugins\*.yaml dist\plaso\plaso\parsers\winreg_plugins

# Makes plaso-<version>-<architecture>.zip
Add-Type -assembly "system.io.compression.filesystem"
Expand Down
2 changes: 1 addition & 1 deletion plaso/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@

from __future__ import unicode_literals

__version__ = '20180609'
__version__ = '20180613'

0 comments on commit b1f1383

Please sign in to comment.