@@ -37,27 +37,48 @@ jobs:
3737 - name : Run Python Tests
3838 run : ci/run_python_tests.sh
3939
40- lint_python_2020 :
41- name : Lint Python Code (CY2020)
40+ test_cuebot_2020 :
41+ name : Build Cuebot and Run Unit Tests (CY2020)
4242 runs-on : ubuntu-latest
43- container : aswf/ci-opencue:2020
43+ container :
44+ image : aswf/ci-opencue:2020
4445 steps :
4546 - uses : actions/checkout@v2
46- - name : Lint Python Code
47- run : ci/run_python_lint.sh
47+ - name : Build with Gradle
48+ run : |
49+ chown -R aswfuser:aswfgroup .
50+ su -c "cd cuebot && ./gradlew build --stacktrace --info" aswfuser
4851
49- test_cuebot_2020 :
50- name : Build Cuebot and Run Unit Tests (CY2020)
52+ test_python_2021 :
53+ name : Run Python Unit Tests (CY2021)
54+ runs-on : ubuntu-latest
55+ container : aswf/ci-opencue:2021
56+ steps :
57+ - uses : actions/checkout@v2
58+ - name : Run Python Tests
59+ run : ci/run_python_tests.sh
60+
61+ test_cuebot_2021 :
62+ name : Build Cuebot and Run Unit Tests (CY2021)
5163 runs-on : ubuntu-latest
5264 container :
53- image : aswf/ci-opencue:2020
65+ image : aswf/ci-opencue:2021
5466 steps :
5567 - uses : actions/checkout@v2
5668 - name : Build with Gradle
5769 run : |
5870 chown -R aswfuser:aswfgroup .
5971 su -c "cd cuebot && ./gradlew build --stacktrace --info" aswfuser
6072
73+ lint_python :
74+ name : Lint Python Code
75+ runs-on : ubuntu-latest
76+ container : aswf/ci-opencue:2021
77+ steps :
78+ - uses : actions/checkout@v2
79+ - name : Lint Python Code
80+ run : ci/run_python_lint.sh
81+
6182 test_sphinx :
6283 name : Test Documentation Build
6384 runs-on : ubuntu-latest
0 commit comments