Skip to content

Commit c9b5083

Browse files
author
Brad Carman
committed
CI fix maybe
1 parent 00a126e commit c9b5083

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/CI.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,14 @@ concurrency:
1313
jobs:
1414
test:
1515
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
16+
env:
17+
MODERNGL_DEBUGGING: "true" # turn on errors when running OpenGL tests
1618
runs-on: ${{ matrix.os }}
1719
strategy:
1820
fail-fast: false
1921
matrix:
2022
version:
21-
- '1.8'
23+
- '1' # automatically expands to the latest stable 1.x release of Julia
2224
os:
2325
- ubuntu-latest
2426
arch:
@@ -30,6 +32,7 @@ jobs:
3032
version: ${{ matrix.version }}
3133
arch: ${{ matrix.arch }}
3234
- uses: julia-actions/cache@v1
35+
- run: sudo apt-get update && sudo apt-get install -y xorg-dev mesa-utils xvfb libgl1 freeglut3-dev libxrandr-dev libxinerama-dev libxcursor-dev libxi-dev libxext-dev
3336
- uses: julia-actions/julia-buildpkg@v1
3437
- uses: julia-actions/julia-runtest@v1
3538
- uses: julia-actions/julia-processcoverage@v1

src/ModelingToolkitDesigner.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ function view(design::ODESystemDesign, interactive=true)
305305
open_button = Button(fig[12,6]; label="open", fontsize=12)
306306
save_button = Button(fig[12,10]; label="save", fontsize=12)
307307

308-
Label(fig[1,:], title; halign = :left)
308+
Label(fig[1,:], title; halign = :left, fontsize=11)
309309
end
310310

311311
for component in design.components

0 commit comments

Comments
 (0)