Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
d78ba8a
Refactored fileio.c:
yoniko Jan 21, 2022
f16ed30
Bugfix - rename fileio_asycio to fileio_asyncio
yoniko Jan 21, 2022
d95ef84
Added copyrights & license to new files
yoniko Jan 22, 2022
6a36ac7
CR fixes
yoniko Jan 24, 2022
1bccf20
Compression asyncio:
yoniko Jan 24, 2022
4ef1ddd
CR fixes (naming conventions)
yoniko Jan 24, 2022
2255280
Reverted whitespace changes
yoniko Jan 22, 2022
7366119
CR fixes (naming conventions)
yoniko Jan 24, 2022
307a9cd
Merge remote-tracking branch 'origin/dev' into compression_asyncio_af…
yoniko Jan 24, 2022
2cbc104
Small cosmetic changes
yoniko Jan 24, 2022
512e5a3
CR fixes
yoniko Jan 25, 2022
f1715ef
CR fixes - disabled sparse write for compression
yoniko Jan 25, 2022
4cac292
Asyncio Compression: significantly reduced the number of memcpys
yoniko Jan 26, 2022
a5de446
Asyncio Compression: fixed write error messages
yoniko Jan 26, 2022
494d81f
Merge remote-tracking branch 'origin/dev' into compression_asyncio_af…
yoniko Jan 26, 2022
0f5f6ed
Asyncio Compression: CR fixes
yoniko Jan 26, 2022
53d68e0
Asyncio Compression: Changed asyncio to be default behaviour and adju…
yoniko Jan 26, 2022
00ecfcb
fix output line
yoniko Jan 26, 2022
99a0b5d
Asyncio compression: fix a bug in lz4 usage
yoniko Jan 27, 2022
c989e44
CR fixes
yoniko Jan 27, 2022
7007744
Bug fix
yoniko Jan 27, 2022
53024a8
kept only mac os ci test
yoniko Jan 27, 2022
a1ecc67
added stresstest
yoniko Jan 27, 2022
141f530
added stresstest 2
yoniko Jan 27, 2022
c45688e
returned original tests, added print
yoniko Jan 27, 2022
4fab14e
increased frame file size
yoniko Jan 27, 2022
3499732
added tmate debug workflow
yoniko Jan 28, 2022
45c4e61
reverted datgen size
yoniko Jan 28, 2022
edc8e66
more tests and more debugging info
yoniko Jan 28, 2022
f6be244
added a bunch more of macos tests
yoniko Jan 28, 2022
95777ce
shortened tests
yoniko Jan 28, 2022
b5baef3
upload coredump on failure
yoniko Jan 28, 2022
4265700
returned all tests to playtest.sh
yoniko Jan 28, 2022
779409f
reverted to tmate shell on failure
yoniko Jan 28, 2022
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
695 changes: 502 additions & 193 deletions .github/workflows/dev-long-tests.yml

Large diffs are not rendered by default.

820 changes: 410 additions & 410 deletions .github/workflows/dev-short-tests.yml

Large diffs are not rendered by default.

16 changes: 16 additions & 0 deletions .github/workflows/tmate-debug.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: tmate-debug-osx
on:
workflow_dispatch:
inputs:
debug_enabled:
description: 'Run the build with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)'
required: false
default: false
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Setup tmate session
uses: mxschmitt/action-tmate@v3
if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.debug_enabled }}
1 change: 1 addition & 0 deletions programs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,7 @@ Advanced arguments :
--filelist FILE : read list of files to operate upon from FILE
--output-dir-flat DIR : processed files are stored into DIR
--output-dir-mirror DIR : processed files are stored into DIR respecting original directory structure
--[no-]asyncio : use asynchronous IO (default: enabled)
--[no-]check : during compression, add XXH64 integrity checksum to frame (default: enabled). If specified with -d, decompressor will ignore/validate checksums in compressed frame (default: validate).
-- : All arguments after "--" are treated as files

Expand Down
Loading