Skip to content

Commit

Permalink
Fix CI build
Browse files Browse the repository at this point in the history
  • Loading branch information
zebreus committed Jun 10, 2023
1 parent 0c8c5a9 commit d619357
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,12 @@ jobs:
- name: Install GraphViz
run: sudo apt-get install graphviz -y

- name: Install Symbolator
run: |
wget https://github.com/zebreus/symbolator/releases/download/v1.2.1/symbolator.AppImage
chmod +x symbolator.AppImage
mv symbolator.AppImage /usr/local/bin/symbolator
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ public void should_call_symbolator_with_correct_arguments() throws Exception {
// Assert that the file looks like an SVG
assertThat(new String(svgWithOpaqueBackground, StandardCharsets.UTF_8)).contains("svg");
// Assert that expected things are in the diagram
assertThat(new String(svgWithOpaqueBackground, StandardCharsets.UTF_8)).contains("counter");
assertThat(new String(svgWithOpaqueBackground, StandardCharsets.UTF_8)).contains("clock");
assertThat(new String(svgWithOpaqueBackground, StandardCharsets.UTF_8)).contains("count");

Expand Down

0 comments on commit d619357

Please sign in to comment.