]> sigrok.org Git - sigrok-cli.git/commitdiff
build.yml: Add missing runners
authorSoeren Apel <redacted>
Thu, 22 Aug 2024 21:26:40 +0000 (23:26 +0200)
committerSoeren Apel <redacted>
Thu, 22 Aug 2024 21:26:40 +0000 (23:26 +0200)
.github/workflows/build.yml

index 8f2af548afc2fbf616face38685f29f63e76315d..2eaf8c08266dffba60539d966d9bbf12498ed58a 100644 (file)
@@ -16,6 +16,7 @@ jobs:
     name: Create pending status
     # Run this only for pull requests
     if: (github.event == pull_request)
+    runs-on: ubuntu-latest
 
     steps:
     - name: Get PR hash
@@ -52,8 +53,9 @@ jobs:
     if: |
       always() &&    # Workaround, see https://github.com/actions/runner/issues/491#issuecomment-850884422
       (github.event == pull_request) &&
-      !contains(needs.*.result, 'cancelled') &&
-      !contains(needs.*.result, 'failure')
+      (!contains(needs.*.result, 'cancelled')) &&
+      (!contains(needs.*.result, 'failure'))
+    runs-on: ubuntu-latest
 
     steps:
       - name: Get PR hash
@@ -91,6 +93,7 @@ jobs:
       always() &&    # Workaround, see https://github.com/actions/runner/issues/491#issuecomment-850884422
       (github.event == pull_request) &&
       (contains(needs.*.result, 'cancelled') || contains(needs.*.result, 'failure'))
+    runs-on: ubuntu-latest
 
     steps:
       - name: Get PR hash