Configuration fix: Revise meson version - Part 2
authorColin Clark <colin.clark@cclark.uk>
Sat, 7 Oct 2023 12:13:43 +0000 (13:13 +0100)
committerColin Clark <colin.clark@cclark.uk>
Sat, 7 Oct 2023 12:13:43 +0000 (13:13 +0100)
The later version of meson requires gettext to be installed

.github/workflows/check-build-actions.yml

index cc524bc..f29ee77 100644 (file)
@@ -7,6 +7,7 @@ jobs:
     steps:
     - run: sudo apt-get update
     - run: sudo apt-get install build-essential libgtk-3-dev libgtk-3-bin
+    - run: sudo apt-get install gettext
     - run: sudo apt-get install shellcheck
     - uses: actions/checkout@v3
     - uses: actions/setup-python@v4
@@ -31,6 +32,7 @@ jobs:
     steps:
     - run: sudo apt-get update
     - run: sudo apt-get install build-essential libgtk-3-dev libgtk-3-bin
+    - run: sudo apt-get install gettext
     - run: sudo apt-get install shellcheck
     - run: sudo apt-get install evince
     - run: sudo apt-get install libarchive-dev
@@ -58,7 +60,7 @@ jobs:
         directory: build
         setup-options: -Ddevel=enabled
         options: --verbose
-        meson-version: 0.56.2
+        meson-version: 1.0.0
     - name: Upload logs
       uses: actions/upload-artifact@v2
       if: always()