Skip to content

Commit

Permalink
ci: Enable glib-sys / gobject-sys tests
Browse files Browse the repository at this point in the history
They're finally passing now.
  • Loading branch information
sdroege authored and bilelmoussaoui committed Apr 25, 2024
1 parent 7f4a1dc commit 4bc38db
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- { name: "cairo", features: "png,pdf,svg,ps,use_glib,v1_18,freetype,script,xcb,xlib,win32-surface", nightly: "--features 'png,pdf,svg,ps,use_glib,v1_18,freetype,script,xcb,xlib,win32-surface'", test_sys: true }
- { name: "gdk-pixbuf", features: "v2_42", nightly: "--all-features", test_sys: true }
- { name: "gio", features: "v2_80", nightly: "--all-features", test_sys: true }
- { name: "glib", features: "v2_80", nightly: "--all-features", test_sys: false }
- { name: "glib", features: "v2_80", nightly: "--all-features", test_sys: true }
- { name: "graphene", features: "", nightly: "", test_sys: true }
- { name: "pango", features: "v1_50", nightly: "--all-features", test_sys: true }
- { name: "pangocairo", features: "", nightly: "--all-features", test_sys: true }
Expand Down Expand Up @@ -85,6 +85,10 @@ jobs:
run: cargo test
working-directory: ${{ matrix.conf.name }}/sys
if: matrix.conf.test_sys
- name: Test ${{ matrix.conf.name }}/gobject-sys
run: cargo test
working-directory: ${{ matrix.conf.name }}/gobject-sys
if: matrix.conf.test_sys && matrix.conf.name == 'glib'
# GLib compile tests only on stable
- name: Compile tests
run: cargo test --manifest-path glib/Cargo.toml --features "compiletests,v2_78"
Expand Down

0 comments on commit 4bc38db

Please sign in to comment.