diff options
-rw-r--r-- | .github/workflows/build.yml | 4 | ||||
-rw-r--r-- | README.md | 2 | ||||
-rwxr-xr-x | run | 15 |
3 files changed, 12 insertions, 9 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 97b90f2..b37bd87 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,8 +20,8 @@ jobs: key: toller-compiler - name: Build cross compiler if: steps.cache-cross.outputs.cache-hit != 'true' - run: sh run cross + run: sh run cross -y - name: Build run: sh run build -y - name: Test install - run: sh run image + run: sh run image -y @@ -32,7 +32,7 @@ This project is somewhat of a coding playground for me. It doesn't have any usef - Install build dependencies (package names may vary depending on your operating system) - - Ubuntu/Debian _"instructions"_ can be found here: [GitHub Workflow](https://raw.githubusercontent.com/marvinborner/Melvix/master/.github/workflows/build.yml) + - Ubuntu/Debian _"instructions"_ can be found here: [GitHub Workflow](https://raw.githubusercontent.com/marvinborner/Melvix/main/.github/workflows/build.yml) - binutils - ccache - gcc @@ -6,6 +6,7 @@ set -e cd "$(dirname "$0")" mode="${1}" +no_ask="${2}" network="rtl8139" qemu_with_flags() { @@ -15,11 +16,13 @@ qemu_with_flags() { make_cross() { if [ ! -d "./cross/" ]; then - echo -n "Do you want to compile a cross compiler (this can take up to 20 minutes)? [yn] " - read -r answer - if ! [ "$answer" != "${answer#[Yy]}" ]; then - echo "The compilation of melvix requires a cross compiler!" - exit 1 + if [ "$no_ask" != "-y" ]; then + echo -n "Do you want to compile a cross compiler (this can take up to 20 minutes)? [yn] " + read -r answer + if ! [ "$answer" != "${answer#[Yy]}" ]; then + echo "The compilation of melvix requires a cross compiler!" + exit 1 + fi fi # Create directory @@ -183,7 +186,7 @@ elif [ "${mode}" = "test" ] || [ "${mode}" = "" ]; then make_sync & make_test else - echo "Usage: ./run {cross | clean | build | test | debug | again | disasm | sync | disk}" + echo "Usage: ./run {cross | clean | build | test | debug | again | disasm | sync | disk} [-y]" printf "\nDescription of options:\n" printf "cross\t\tBuilds the cross compiler\n" printf "clean\t\tRemoves the compiled files\n" |