Skip to content

Commit abf62dd

Browse files
committed
Use shell script
1 parent f3e850f commit abf62dd

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,6 @@ jobs:
5252
5353
- name: Build NitrOS9
5454
run: |
55-
pwd
56-
ls -al
57-
export NITROS9DIR=`pwd`
58-
echo $NITROS9DIR
59-
sudo make
60-
sudo make dsk
55+
sudo bash ./.github/workflows/nitros9.sh
6156
6257

.github/workflows/nitros9.sh

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)