mirror of
https://github.com/esp8266/Arduino.git
synced 2025-04-21 10:26:06 +03:00
* ci: fix checking for presence of CI_GITHUB_API_KEY CI_GITHUB_API_KEY is always set when evaluating job include/exclude conditions, and it only gets removed when the job starts. Move the check into the script. * ci: split build jobs into separate shell scripts
11 lines
123 B
Bash
Executable File
11 lines
123 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# CI job for running tests on the host
|
|
|
|
set -ev
|
|
|
|
cd $TRAVIS_BUILD_DIR/tests/host
|
|
|
|
make CI
|
|
make clean-objects
|