Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: kernel-patches/vmtest
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2695dda9b18e79f2d60da2f9f33226e7a46c8368
Choose a base ref
..
head repository: kernel-patches/vmtest
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 6831f531a0275cea3b8f20d0da91681a5fd6becf
Choose a head ref
Showing with 6 additions and 1 deletion.
  1. +3 −0 .github/workflows/kernel-build-test.yml
  2. +3 −1 .github/workflows/test.yml
3 changes: 3 additions & 0 deletions .github/workflows/kernel-build-test.yml
Original file line number Diff line number Diff line change
@@ -53,6 +53,9 @@ jobs:

test:
uses: ./.github/workflows/kernel-test.yml
# Setting name to test here to avoid lengthy autogenerated names due to matrix
# e.g build-and-test x86_64-gcc / test (test_progs_parallel, true, 30) / test_progs_parallel on x86_64 with gcc
name: "test"
needs: [build]
strategy:
fail-fast: false
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -28,7 +28,9 @@ jobs:
python3 .github/scripts/matrix.py
build-and-test:
name: "build-and-test ${{ matrix.arch }}-${{ matrix.toolchain_full }}"
# Setting name to arch-compiler here to avoid lengthy autogenerated names due to matrix
# e.g build-and-test x86_64-gcc / test (test_progs_parallel, true, 30) / test_progs_parallel on x86_64 with gcc
name: "${{ matrix.arch }}-${{ matrix.toolchain_full }}"
uses: ./.github/workflows/kernel-build-test.yml
needs: [set-matrix]
permissions: