diff --git a/.github/workflows/build-dev.yml b/.github/workflows/build-dev.yml index bac8f67..1f7a924 100644 --- a/.github/workflows/build-dev.yml +++ b/.github/workflows/build-dev.yml @@ -60,11 +60,6 @@ jobs: shell: bash run: sudo apt install -y ${{ matrix.linux-headers.pkg }} - - name: Generate LINUX_HEADERS_PATH - id: gen-linux-headers-path - shell: bash - run: echo "VALUE=$(./select-feature.sh ${{ matrix.linux-headers.alias }})" >> $GITHUB_OUTPUT - - name: Add target uses: ./.github/actions/add-target with: @@ -97,7 +92,7 @@ jobs: feature: ${{ steps.select-feature.outputs.FEATURE }} release: false env: - LINUX_HEADERS_PATH: ${{ steps.gen-linux-headers-path.outputs.VALUE }} + LINUX_HEADERS_PATH: ${{ matrix.linux-headers.install-path }} - name: Run check uses: ./.github/actions/check @@ -105,7 +100,7 @@ jobs: target: ${{ matrix.target.triple }} feature: ${{ steps.select-feature.outputs.FEATURE }} env: - LINUX_HEADERS_PATH: ${{ steps.gen-linux-headers-path.outputs.VALUE }} + LINUX_HEADERS_PATH: ${{ matrix.linux-headers.install-path }} - name: Run test uses: ./.github/actions/test @@ -113,4 +108,4 @@ jobs: target: ${{ matrix.target.triple }} feature: ${{ steps.select-feature.outputs.FEATURE }} env: - LINUX_HEADERS_PATH: ${{ steps.gen-linux-headers-path.outputs.VALUE }} + LINUX_HEADERS_PATH: ${{ matrix.linux-headers.install-path }}