diff --git a/.github/workflows/continuous-integration-v2.yml b/.github/workflows/continuous-integration-v2.yml index 039cfc4..024f6b1 100644 --- a/.github/workflows/continuous-integration-v2.yml +++ b/.github/workflows/continuous-integration-v2.yml @@ -22,8 +22,6 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v6 - - name: Install Updates - run: sudo apt update && sudo apt upgrade -y - name: Run all tests run: make tests gdb: @@ -32,9 +30,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v6 - - name: Install Updates - run: sudo apt update && sudo apt upgrade -y - name: Install GDB if not present - run: sudo apt install gdb + run: sudo apt update && sudo apt install gdb - name: Run all tests under gdb run: make tests-gdb \ No newline at end of file diff --git a/tests/scripts/makefile b/tests/scripts/makefile index dca4d25..7974b7f 100644 --- a/tests/scripts/makefile +++ b/tests/scripts/makefile @@ -41,7 +41,7 @@ copy: run: $(TEST_SCRIPTFILES:.toy=.toy-run) %.toy-run: %.toy - find -name repl* -type f -exec {} -f $< --verbose \; + find -name repl* -type f -exec {} -f $< \; #using gdb gdb: source repl copy run-gdb @@ -49,4 +49,4 @@ gdb: source repl copy run-gdb run-gdb: $(TEST_SCRIPTFILES:.toy=.toy-run-gdb) %.toy-run-gdb: %.toy - gdb $(TEST_OUTDIR)/$(TEST_REPLNAME) -ix gdb_init -ex=run --batch --return-child-result --args "out/repl.out" "-f" "$<" "--verbose" \ No newline at end of file + gdb $(TEST_OUTDIR)/$(TEST_REPLNAME) -ix gdb_init -ex=run --batch --return-child-result --args "out/repl.out" "-f" "$<" \ No newline at end of file