Skip to content

Commit

Permalink
Fix missing utilities in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Victor Paleologue committed Jul 26, 2021
1 parent ac31458 commit e94531c
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 8 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/continuous.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,17 @@ jobs:
runs-on: ubuntu-20.04

steps:
- name: Update APT
run: sudo apt update

- name: Install Tools
run: sudo apt update && sudo apt install apt-utils ca-certificates locales curl wget python3-dev build-essential pkg-config
- name: Install Utilities
run: sudo apt install apt-utils ca-certificates locales curl wget

- name: Install Build Tools
run: sudo apt install build-essential pkg-config libtool

- name: Install Dependencies
run: sudo apt update && sudo apt install libtool libudev-dev
run: sudo apt install python3-dev libudev-dev

- uses: actions/checkout@v2

Expand Down
15 changes: 10 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,20 @@ jobs:
runs-on: ubuntu-20.04

steps:

- name: Install Tools
run: sudo apt update && sudo apt install apt-utils ca-certificates locales curl wget python3-dev build-essential pkg-config
- name: Update APT
run: sudo apt update

- name: Install Utilities
run: sudo apt install apt-utils ca-certificates locales curl wget jq libxml2-utils

- name: Install Build Tools
run: sudo apt install build-essential pkg-config libtool

- name: Install QiBuild
run: sudo pip install qibuild

- name: Install Dependencies
run: sudo apt update && sudo apt install libtool libudev-dev
run: sudo apt install python3-dev libudev-dev

- uses: actions/checkout@v2

Expand Down Expand Up @@ -64,7 +69,7 @@ jobs:
id: "first_release_step"

- name: Make QiToolchain Feed
run: make_feed.sh
run: scripts/make_feed.sh

- uses: "marvinpinto/action-automatic-releases@latest"
with:
Expand Down

0 comments on commit e94531c

Please sign in to comment.