File tree Expand file tree Collapse file tree 3 files changed +7
-6
lines changed
Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 11---
22BUNDLE_BIN: "bin"
3- BUNDLE_PATH: "vendor/gems "
3+ BUNDLE_PATH: "/home/runner/work/hooks/hooks/ vendor/bundle "
44BUNDLE_CACHE_PATH: "vendor/cache"
55BUNDLE_CACHE_ALL: "true"
66BUNDLE_SPECIFIC_PLATFORM: "true"
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ class ValidationError < StandardError; end
1515 optional ( :handler_dir ) . filled ( :string ) # For backward compatibility
1616 optional ( :handler_plugin_dir ) . filled ( :string )
1717 optional ( :auth_plugin_dir ) . maybe ( :string )
18+ optional ( :lifecycle_plugin_dir ) . maybe ( :string )
1819 optional ( :log_level ) . filled ( :string , included_in? : %w[ debug info warn error ] )
1920 optional ( :request_limit ) . filled ( :integer , gt? : 0 )
2021 optional ( :request_timeout ) . filled ( :integer , gt? : 0 )
Original file line number Diff line number Diff line change @@ -23,17 +23,17 @@ if ! docker info &> /dev/null; then
2323fi
2424
2525echo -e " ${PURPLE} [#]${OFF} ${BLUE} Killing old docker processes${OFF} "
26- docker compose -f " $COMPOSE_FILE " down --remove-orphans -v -t 1
27- docker network prune --force
28- docker compose -f " $COMPOSE_FILE " up --build -d
26+ docker compose -f " $COMPOSE_FILE " down --remove-orphans -v -t 1 & > /dev/null
27+ docker network prune --force & > /dev/null
28+ docker compose -f " $COMPOSE_FILE " up --build -d & > /dev/null
2929
3030echo -e " ${PURPLE} [#]${OFF} ${BLUE} Running acceptance tests${OFF} "
3131bundle exec rspec spec/acceptance/acceptance_tests.rb
3232
3333if [ " $KEEP_UP " == " false" ]; then
3434 echo -e " ${PURPLE} [#]${OFF} ${BLUE} Stopping docker processes${OFF} "
35- docker compose -f " $COMPOSE_FILE " down --remove-orphans -v -t 1
36- docker network prune --force
35+ docker compose -f " $COMPOSE_FILE " down --remove-orphans -v -t 1 & > /dev/null
36+ docker network prune --force & > /dev/null
3737else
3838 echo -e " ${PURPLE} [#]${OFF} ${BLUE} Keeping docker processes up${OFF} "
3939fi
You can’t perform that action at this time.
0 commit comments