mirror of
https://github.com/traefik/traefik
synced 2026-02-03 11:10:33 +00:00
9 lines
198 B
Bash
Executable File
9 lines
198 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
ci_retry make validate
|
|
|
|
if [ -n "$SHOULD_TEST" ]; then ci_retry make test-unit; fi
|
|
|
|
if [ -n "$SHOULD_TEST" ]; then make -j${N_MAKE_JOBS} crossbinary-default-parallel; fi
|