mirror of
https://github.com/vale981/ray
synced 2025-03-12 22:26:39 -04:00
26 lines
673 B
YAML
26 lines
673 B
YAML
![]() |
name: Jenkins Integration
|
||
|
|
||
|
env:
|
||
|
DEBIAN_FRONTEND: noninteractive
|
||
|
|
||
|
on: [push, pull_request]
|
||
|
|
||
|
jobs:
|
||
|
jenkins:
|
||
|
name: docker integration
|
||
|
runs-on: ubuntu-latest
|
||
|
strategy:
|
||
|
matrix:
|
||
|
test-case: ["RUN_TUNE_TESTS", "RUN_DOC_TESTS", "RUN_SGD_TESTS"]
|
||
|
fail-fast: false
|
||
|
steps:
|
||
|
- name: Checkout repository
|
||
|
uses: actions/checkout@v1
|
||
|
with:
|
||
|
fetch-depth: 1
|
||
|
- name: Run Jenkins Tests
|
||
|
shell: bash -e -o pipefail -l {0}
|
||
|
env:
|
||
|
SIGOPT_KEY: ${{ secrets.TUNE_SIGOPT_KEY }}
|
||
|
TEST_CASE: ${{ matrix.test-case }}
|
||
|
run: export $TEST_CASE=1 && HOME=$(pwd) ./ci/jenkins_tests/entry_point.sh
|