From 97be8e07c1caf08d642988705737856962c14b79 Mon Sep 17 00:00:00 2001 From: Everett Hildenbrandt Date: Sun, 4 May 2025 14:37:06 +0000 Subject: [PATCH 1/2] .github/master: add runs-on block --- .github/workflows/master.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index 94aaa44..f87fbf8 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -13,6 +13,7 @@ env: jobs: update-deps: name: "Update Dependents" + runs-on: [self-hosted, linux, normal] steps: - name: 'Check out code' uses: actions/checkout@v4 From 45222cc5fa807e258e53f32af844bbf1c4a4b8d7 Mon Sep 17 00:00:00 2001 From: dkcumming Date: Sun, 4 May 2025 10:52:19 -0400 Subject: [PATCH 2/2] Fixed the verbosity env var reading in Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index dddd374..7f6bbea 100644 --- a/Makefile +++ b/Makefile @@ -60,7 +60,7 @@ remake-ui-tests: # This will run without saving source files. Run the script manually to do this. bash tests/ui/remake_ui_tests.sh "$$RUST_DIR_ROOT" -test-ui: VERBOSE=0 +test-ui: VERBOSE?=0 test-ui: # Check if RUST_DIR_ROOT is set if [ -z "$$RUST_DIR_ROOT" ]; then \