We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3e850f commit abf62ddCopy full SHA for abf62dd
.github/workflows/build.yml
@@ -52,11 +52,6 @@ jobs:
52
53
- name: Build NitrOS9
54
run: |
55
- pwd
56
- ls -al
57
- export NITROS9DIR=`pwd`
58
- echo $NITROS9DIR
59
- sudo make
60
- sudo make dsk
+ sudo bash ./.github/workflows/nitros9.sh
61
62
.github/workflows/nitros9.sh
@@ -0,0 +1,9 @@
1
+#!/bin/bash
2
+#
3
+# Build nitros9 from source
4
5
+pwd
6
+ls -al
7
+export NITROS9DIR=`pwd`
8
+sudo make
9
+sudo make dsk
0 commit comments