summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarti Maria <marti.maria@littlecms.com>2023-03-16 18:57:03 +0100
committerMarti Maria <marti.maria@littlecms.com>2023-03-16 18:57:03 +0100
commit959663520fce9601c2ce932796d96f9df606dd7e (patch)
tree7744716a8ff1b8608db4a680fddacfdca02c75b2
parentef21b76c33aadfe67f61e378627cd63f21aab4c1 (diff)
downloadlcms2-959663520fce9601c2ce932796d96f9df606dd7e.tar.gz
Add threaded plugin to build.yml
Activate plugin testbed
-rw-r--r--.github/workflows/build.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 1590df3..a685bb9 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v2
- name: Build Ubuntu
run: |
- ./configure --with-fastfloat
+ ./configure --with-fastfloat --with-threaded
make
make check
@@ -24,7 +24,7 @@ jobs:
- uses: actions/checkout@v2
- name: Build Ubuntu
run: |
- ./configure --with-fastfloat
+ ./configure --with-fastfloat --with-threaded
make
make check
@@ -34,7 +34,7 @@ jobs:
- uses: actions/checkout@v2
- name: Build MacOS
run: |
- ./configure --with-fastfloat
+ ./configure --with-fastfloat --with-threaded
make
make check
@@ -81,7 +81,7 @@ jobs:
- name: Build Ubuntu
run: |
- meson setup build -Dfastfloat=true
+ meson setup build -Dfastfloat=true -Dthreaded=true
meson compile -C build
meson test -C build