- fix docker permissions with mounted volumes on new docker versions (https://github.com/docker/desktop-linux/issues/31) - fix ac-tools image - cleanup unused env - add `cap_add: SYS_NICE` to allow setting process high priority - fix ccache in docker - allow to switch between root user (default) to acore user in any container - fix cache of the downloaded client data - split docker github actions in 2 parts - versioning mysql images - performance improvements
9 lines
228 B
Bash
9 lines
228 B
Bash
CUR_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
CTOOLS_BUILD=all
|
|
|
|
# allow the user to override configs
|
|
if [ -f "$AC_PATH_CONF/config.sh" ]; then
|
|
source "$AC_PATH_CONF/config.sh" # should overwrite previous
|
|
fi
|