diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 90b40727..3fa90a27 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -47,9 +47,7 @@ jobs: - name: Configure ${{ matrix.target }} run: | - target=${{ matrix.target }}_defconfig - echo "Building $target ..." - make $target + make ${{ matrix.target }}_defconfig - name: Unit Test ${{ matrix.target }} run: | @@ -57,6 +55,7 @@ jobs: - name: Build ${{ matrix.target }} run: | + echo "Building ${{ matrix.target }}_defconfig ..." make - name: Prepare ${{ matrix.target }} Artifact @@ -81,6 +80,10 @@ jobs: clean: true submodules: recursive + - name: Configure x86_64 + run: | + make x86_64_defconfig + - uses: actions/download-artifact@v4 with: pattern: "artifact-*"