Commit bab0de92b7

Alex Rønne Petersen <alex@alexrp.com>
2025-08-02 09:39:56
ci: re-renable riscv64-linux-debug and riscv64-linux-release for master
1 parent 4ec232a
Changed files (2)
.github
.github/workflows/ci.yaml
@@ -50,6 +50,24 @@ jobs:
         uses: actions/checkout@v4
       - name: Build and Test
         run: sh ci/aarch64-linux-release.sh
+  riscv64-linux-debug:
+    if: github.event_name == 'push'
+    timeout-minutes: 360
+    runs-on: [self-hosted, Linux, riscv64]
+    steps:
+      - name: Checkout
+        uses: actions/checkout@v4
+      - name: Build and Test
+        run: sh ci/riscv64-linux-debug.sh
+  riscv64-linux-release:
+    if: github.event_name == 'push'
+    timeout-minutes: 360
+    runs-on: [self-hosted, Linux, riscv64]
+    steps:
+      - name: Checkout
+        uses: actions/checkout@v4
+      - name: Build and Test
+        run: sh ci/riscv64-linux-release.sh
   x86_64-macos-release:
     runs-on: "macos-13"
     env:
.github/workflows/riscv.yaml
@@ -1,22 +0,0 @@
-name: riscv
-on:
-  workflow_dispatch:
-permissions:
-  contents: read
-jobs:
-  riscv64-linux-debug:
-    timeout-minutes: 360
-    runs-on: [self-hosted, Linux, riscv64]
-    steps:
-      - name: Checkout
-        uses: actions/checkout@v4
-      - name: Build and Test
-        run: sh ci/riscv64-linux-debug.sh
-  riscv64-linux-release:
-    timeout-minutes: 360
-    runs-on: [self-hosted, Linux, riscv64]
-    steps:
-      - name: Checkout
-        uses: actions/checkout@v4
-      - name: Build and Test
-        run: sh ci/riscv64-linux-release.sh