-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New service, initial version: FileSorter
This is a service which auto sorts files based on type and timestamps. Could potentially later be enhanced to also consider meta-data native to specific types Note that while its a service, currently the dir watching inbox functionality is not yet implemented and it only performs a bootup sorting Also fixed: - issue in FileSystem class where getting the file list recursively was using the wrong variable so sub-dirs would get messed up - deleted rubbish test code in main.cpp of ProcessMetrics
- Loading branch information
1 parent
7a85e6d
commit eff5b7c
Showing
37 changed files
with
2,816 additions
and
45 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 |
---|---|---|
@@ -0,0 +1,53 @@ | ||
name: target_GUCEF_exe_FileSorter | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
archiveBuildArtifacts: | ||
description: 'Archive Build Artifacts?' | ||
required: false | ||
default: 'false' | ||
targetPlatform: | ||
description: 'Target platform to build?' | ||
required: false | ||
default: 'all' | ||
|
||
jobs: | ||
|
||
GUCEF_exe_FileSorter-all: | ||
runs-on: self-hosted | ||
env: | ||
TARGET_NAME: GUCEF_exe_FileSorter | ||
TARGET_PLATFORM: all | ||
TARGET_PROJECT: projects/CMake/targets/GUCEF_exe_FileSorter | ||
PRODUCT_NAME: FileSorter | ||
CI_TOOL: GITHUB-ACTIONS | ||
BUILD_TOOL: CMAKE | ||
steps: | ||
- uses: actions/checkout@master | ||
- name: Build FileSorter for platform all | ||
run: ./projects/CI/targets/ci_build.sh | ||
- name: Archive Debian build artifacts | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: Debian packages | ||
path: | | ||
./common/bin/GUCEF_exe_FileSorter-all/packages/*FileSorter*.deb | ||
- name: Archive RPM build artifacts | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: RPM packages | ||
path: | | ||
./common/bin/GUCEF_exe_FileSorter-all/packages/*FileSorter*.rpm | ||
- name: Archive Tarball - bz2 compressed build artifacts | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: tar.bz2 packages | ||
path: | | ||
./common/bin/GUCEF_exe_FileSorter-all/packages/*FileSorter*.tar.bz2 | ||
- name: Archive Tarball - Xz compressed build artifacts | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: tar.xz packages | ||
path: | | ||
./common/bin/GUCEF_exe_FileSorter-all/packages/*FileSorter*.tar.xz |
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 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 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 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 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 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 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 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 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 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 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
Oops, something went wrong.