Configuration fix: Revise meson version - Part 2
authorColin Clark <[email protected]>
Sat, 7 Oct 2023 12:13:43 +0000 (13:13 +0100)
committerColin Clark <[email protected]>
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 cc524bc89de6cec9709a63ae41322ba615f7d05f..f29ee77c4ad64ec108c39bcc7553efc187aedb35 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()