-
-
Save xeioex/a63eecb9461a267ce65c45a406834ec8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml | |
| index 773eaba..e7750c0 100644 | |
| --- a/.github/workflows/ci.yaml | |
| +++ b/.github/workflows/ci.yaml | |
| @@ -40,7 +40,7 @@ jobs: | |
| - master | |
| - stable-1.28 | |
| build: | |
| - - debug | |
| + - debug | |
| - debug-static | |
| - release | |
| @@ -61,7 +61,7 @@ jobs: | |
| build: debug | |
| runs-on: ${{ matrix.runner }}-latest | |
| - | |
| + | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| @@ -103,12 +103,12 @@ jobs: | |
| if: ${{ !cancelled() && steps.build.outcome == 'success' }} | |
| run: make BUILD=${{ matrix.build }} check | |
| - - name: run unit-tests | |
| + - name: run unit-tests | |
| # always run if build succeeds | |
| if: ${{ !cancelled() && steps.build.outcome == 'success' && runner.os != 'macOS' }} | |
| run: make BUILD=${{ matrix.build }} unittest | |
| - - name: run tests | |
| + - name: run tests | |
| # always run if build succeeds | |
| if: ${{ !cancelled() && steps.build.outcome == 'success' }} | |
| run: make BUILD=${{ matrix.build }} TEST_PREREQ= test | |
| diff --git a/Makefile b/Makefile | |
| index b39124a..250c0d2 100644 | |
| --- a/Makefile | |
| +++ b/Makefile | |
| @@ -106,5 +106,5 @@ clean: ## Cleanup everything | |
| build-%: ## Build with the specified configuration. E.g. make build-sanitize. | |
| $(MAKE) build BUILD="$*" | |
| -test-%: ## Test with the specified configuration. | |
| +test-%: ## Test with the specified configuration. | |
| $(MAKE) test BUILD="$*" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment