Commit e99b05d6c4bd0fde3e82c6b666ebae4f755c3386

Pierre Wendling 2022-10-10T22:36:21

Vita: Install bash in CI. The wrapper `arm-vita-eabi-pkg-config` fails without it with the error: `env: can't execute 'bash': No such file or directory`

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/.github/workflows/vita.yaml b/.github/workflows/vita.yaml
index 9b27370..e7bcd72 100644
--- a/.github/workflows/vita.yaml
+++ b/.github/workflows/vita.yaml
@@ -16,7 +16,7 @@ jobs:
     - name: Install build requirements
       run: |
         apk update 
-        apk add cmake ninja pkgconf
+        apk add cmake ninja pkgconf bash
     - name: Configure CMake
       run: |
         cmake -S . -B build -G Ninja \