Skip to content

Commit 502288a

Browse files
committed
Add a check for OpenJDK
1 parent 3562abe commit 502288a

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

.github/workflows/ci.yml

+13-1
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,16 @@ jobs:
2222
# Build with --manifest-path. If we build under the mmtk-core folder with rust-toolchain, cargo will automatically download the correct
2323
# toolchain, and we will not be able to test whether the toolchain used in the dockerfile is correct.
2424
run: |
25-
docker run mmtk-dev bash -c "git clone https://github.com/mmtk/mmtk-core.git && cargo build --manifest-path=mmtk-core/Cargo.toml"
25+
docker run mmtk-dev bash -c "\
26+
git clone https://github.com/mmtk/mmtk-core.git && \
27+
cargo build --manifest-path=mmtk-core/Cargo.toml"
28+
- name: Build OpenJDK
29+
run: |
30+
docker run mmtk-dev bash -c "\
31+
git clone https://github.com/mmtk/mmtk-openjdk.git && \
32+
git clone https://github.com/mmtk/openjdk.git && \
33+
export MMTK_OPENJDK_PATH=\$(realpath mmtk-openjdk) && \
34+
cd openjdk && \
35+
export DEBUG_LEVEL=slowdebug && \
36+
sh configure --disable-warnings-as-errors --with-debug-level=\$DEBUG_LEVEL && \
37+
make CONF=linux-x86_64-normal-server-\$DEBUG_LEVEL THIRD_PARTY_HEAP=\$MMTK_OPENJDK_PATH/openjdk"

0 commit comments

Comments
 (0)