Skip to content

Commit

Permalink
ci: ensure make
Browse files Browse the repository at this point in the history
  • Loading branch information
Wenzel committed Apr 17, 2024
1 parent ab534ff commit 633d133
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,14 @@ jobs:
echo '{"git_clone_depth": 1}' >> parameters.json
working-directory: deploy

- name: Install make
run: apt-get update && apt-get install -y make
if: contains(matrix.image, 'ubuntu')

- name: Install make
run: dnf install -y make
if: contains(matrix.image, 'centos')

# skip tags related to non-existent hardware/configuration in the CI runner environment
- name: Test userspace deployment
run: >
Expand Down

0 comments on commit 633d133

Please sign in to comment.