From c9cc7618271fca0ef0424648d552a19dff28f9c1 Mon Sep 17 00:00:00 2001 From: Michael Birch Date: Thu, 22 Jul 2021 14:43:50 -0400 Subject: [PATCH 1/2] Optimize for performance instead of code size --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index f3758f7ed..38f747b21 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ autobenches = false crate-type = ["cdylib", "rlib"] [profile.release] -opt-level = "z" +opt-level = 3 debug = false debug-assertions = false overflow-checks = true From 6eade0a53e32dabe023b645200fc428e06798373 Mon Sep 17 00:00:00 2001 From: Michael Birch Date: Thu, 22 Jul 2021 19:05:30 +0000 Subject: [PATCH 2/2] Run test suite sequentially --- .github/workflows/tests.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index bbbd1cd8e..e058a930f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -26,6 +26,7 @@ jobs: bully-build: name: Bully build runs-on: self-hosted + needs: test steps: - name: Clone the repository uses: actions/checkout@v2