From eee210d0c63555e308f1e21070d2c7ce7f4a1119 Mon Sep 17 00:00:00 2001 From: "Sean T. Allen" Date: Sat, 5 Aug 2023 03:18:21 +0000 Subject: [PATCH] Don't use debugger right now We can't do it unless I run docker command --- .github/workflows/pr.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 2742c166f6..c4e6cb9b0c 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -86,16 +86,16 @@ jobs: - name: Git Fuckery run: git config --global --add safe.directory /__w/ponyc/ponyc - name: Libs - run: make libs build_flags=-j2 + run: make libs build_flags=-j4 - name: Debug Configure run: make configure arch=x86-64 config=debug - name: Debug Build run: make build config=debug - name: Debug Test - run: make test-ci config=debug usedebugger='lldb' + run: make test-ci config=debug - name: Release Configure run: make configure arch=x86-64 config=release - name: Release Build run: make build config=release - name: Release Test - run: make test-ci config=release usedebugger='lldb' + run: make test-ci config=release