Skip to content

Commit

Permalink
Added -y options
Browse files Browse the repository at this point in the history
  • Loading branch information
kitao committed Nov 27, 2023
1 parent 0d341df commit f0a76e8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,28 +105,28 @@ jobs:
if: matrix.target == 'x86_64-unknown-linux-gnu'
run: |
sudo apt-get update
sudo apt-get install libssl-dev
sudo apt-get install -y libssl-dev
- name: Install OpenSSL for i686
if: matrix.target == 'i686-unknown-linux-gnu'
run: |
sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install libssl-dev:i386
sudo apt-get install -y libssl-dev:i386
- name: Install OpenSSL for aarch64
if: matrix.target == 'aarch64-unknown-linux-gnu'
run: |
sudo dpkg --add-architecture arm64
sudo apt-get update
sudo apt-get install libssl-dev:arm64
sudo apt-get install -y libssl-dev:arm64
- name: Install OpenSSL for armv7
if: matrix.target == 'armv7-unknown-linux-gnueabihf'
run: |
sudo dpkg --add-architecture armhf
sudo apt-get update
sudo apt-get install libssl-dev:armhf
sudo apt-get install -y libssl-dev:armhf
- name: Build and install SDL2
run: |
Expand Down

0 comments on commit f0a76e8

Please sign in to comment.