Skip to content

Commit

Permalink
ci: use apt-get -q -y to install packages
Browse files Browse the repository at this point in the history
Signed-off-by: Vincent Fu <vincent.fu@samsung.com>
  • Loading branch information
vincentkfu committed Sep 20, 2024
1 parent 7528a58 commit 9596697
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/actions/build-qemu/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ runs:
using: "composite"
steps:
- name: Install QEMU build dependencies
run: sudo apt install libglib2.0-dev libfdt-dev libpixman-1-dev ninja-build flex bison libsdl2-dev libaio-dev python3-tomli libslirp-dev
run: sudo apt-get -q -y install libglib2.0-dev libfdt-dev libpixman-1-dev ninja-build flex bison libsdl2-dev libaio-dev python3-tomli libslirp-dev
shell: bash

- name: Build and install QEMU
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/create-guest-image/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ runs:
using: "composite"
steps:
- name: Install libguestfs
run: sudo apt install libguestfs-tools
run: sudo apt-get -q -y install libguestfs-tools
shell: bash
- name: Setup steps for virt-builder
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/start-vm/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ runs:
using: "composite"
steps:
- name: install wait-for-it
run: sudo apt install -y wait-for-it
run: sudo apt-get -q -y install wait-for-it
shell: bash
- name: Start VM in background
run: |
Expand Down

0 comments on commit 9596697

Please sign in to comment.