Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Thaumy committed Jan 11, 2024
1 parent 8b3cdc4 commit df4851c
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions .github/workflows/build-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -97,20 +92,20 @@ 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
with:
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
with:
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 }}

0 comments on commit df4851c

Please sign in to comment.