Commit 402c962f authored by Jan Kiene's avatar Jan Kiene
Browse files

Merge branch 'main' into shared/ci-system-development

parents cf30a6f2 aea93062
Loading
Loading
Loading
Loading

.gitignore

0 → 100644
+52 −0
Original line number Diff line number Diff line
# .gitignore for IVAS public collaboration Git repository

# Compiler output Unix
IVAS_cod
IVAS_dec
obj/
*.a
*.o
*.P

# default CMake
build/**/*

# Compiler output VS2017
IVAS_cod.exe
IVAS_dec.exe
*.user
.vs/
Debug_*/
Release_*/
*.obj
*.pdb

# Unittests
scripts/ivas_pytests/tests/unit_tests/crend/IVAS_crend_unit_test
scripts/ivas_pytests/tests/unit_tests/crend/IVAS_crend_unit_test.exe
scripts/ivas_pytests/tests/unit_tests/crend/Debug_*/
scripts/ivas_pytests/tests/unit_tests/crend/Release_*/

# Standalone TD object renderer
scripts/td_object_renderer/object_renderer_standalone/renderer_standalone
scripts/td_object_renderer/object_renderer_standalone/renderer_standalone.exe

# Prerenderer
scripts/prerenderer/IVAS_prerenderer
scripts/prerenderer/IVAS_prerenderer.exe

# General/scripts
.DS_Store
.vscode
*.log
*.bak
scripts/c-code_instrument/
scripts/ifdef_instrument.list
scripts/ref/
scripts/test/
scripts/self_test_summary.txt

# Python files that pop up when running scripts
__pycache__/
*.py[cod]
*$py.class

.gitlab-ci-custom.yml

0 → 100644
+4 −0
Original line number Diff line number Diff line
include:
  - project: $CUSTOM_CI_PROJECT
    ref: $CUSTOM_CI_REF
    file: $CUSTOM_CI_FILE

scripts/IvasBuildAndRun.py

100644 → 100755
+0 −0

File mode changed from 100644 to 100755.

+0 −0

File mode changed from 100644 to 100755.

scripts/batch_comp_audio.py

100644 → 100755
+0 −0

File mode changed from 100644 to 100755.

Loading