Skip to content

Commit

Permalink
Add missing Python installation in CI configs
Browse files Browse the repository at this point in the history
  • Loading branch information
metopa committed Nov 29, 2019
1 parent 8462573 commit 964ad4d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .github/workflows/test_cpp_cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ jobs:
steps:
- uses: actions/checkout@v1

- name: Set up Python 3.7
uses: actions/setup-python@v1
with:
python-version: 3.7

- name: Create Build Environment
# Some projects don't allow in-source building, so create a separate build directory
# We'll use this as our working directory for all subsequent commands
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/test_java_make.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,16 @@ jobs:

steps:
- uses: actions/checkout@v1
- name: Set up Python 3.7
uses: actions/setup-python@v1
with:
python-version: 3.7
- name: Set up Java 11
uses: actions/setup-java@v1
with:
java-version: '11.0.4'
java-package: jdk
- name: Compile
run: make -C ${{ matrix.folder }} all
run: make -C ${{ matrix.folder }} -j 8 all
- name: Test
run: python epijudge_ci_test_tool.py java ${{ matrix.mode }} .

0 comments on commit 964ad4d

Please sign in to comment.