mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2025-08-24 05:59:42 -04:00
fix(ci): Install system dependencies on ubuntu-22.04
This commit is contained in:
parent
5192114d6d
commit
d3504c1ddf
2 changed files with 21 additions and 5 deletions
|
@ -56,11 +56,27 @@ jobs:
|
||||||
with:
|
with:
|
||||||
targets: ${{ matrix.platform == 'macos-latest' && 'aarch64-apple-darwin,x86_64-apple-darwin' || '' }}
|
targets: ${{ matrix.platform == 'macos-latest' && 'aarch64-apple-darwin,x86_64-apple-darwin' || '' }}
|
||||||
|
|
||||||
- name: Install Dependencies (Ubuntu Only)
|
- name: install dependencies (ubuntu only)
|
||||||
if: matrix.platform == 'ubuntu-22.04'
|
if: matrix.platform == 'ubuntu-22.04' # This must match the platform value defined above.
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get update
|
sudo apt update;
|
||||||
sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf
|
sudo apt install -y \
|
||||||
|
build-essential \
|
||||||
|
curl \
|
||||||
|
wget \
|
||||||
|
file \
|
||||||
|
libssl-dev \
|
||||||
|
libgtk-3-dev \
|
||||||
|
libappindicator3-dev \
|
||||||
|
librsvg2-dev;
|
||||||
|
|
||||||
|
sudo apt install -y \
|
||||||
|
libwebkit2gtk-4.1-0=2.44.0-2 \
|
||||||
|
libwebkit2gtk-4.1-dev=2.44.0-2 \
|
||||||
|
libjavascriptcoregtk-4.1-0=2.44.0-2 \
|
||||||
|
libjavascriptcoregtk-4.1-dev=2.44.0-2 \
|
||||||
|
gir1.2-javascriptcoregtk-4.1=2.44.0-2 \
|
||||||
|
gir1.2-webkit2-4.1=2.44.0-2;
|
||||||
|
|
||||||
- name: Install Frontend Dependencies
|
- name: Install Frontend Dependencies
|
||||||
working-directory: src-gui
|
working-directory: src-gui
|
||||||
|
|
|
@ -43,7 +43,7 @@ jobs:
|
||||||
targets: ${{ matrix.platform == 'macos-latest' && 'aarch64-apple-darwin,x86_64-apple-darwin' || '' }}
|
targets: ${{ matrix.platform == 'macos-latest' && 'aarch64-apple-darwin,x86_64-apple-darwin' || '' }}
|
||||||
|
|
||||||
- name: install dependencies (ubuntu only)
|
- name: install dependencies (ubuntu only)
|
||||||
if: matrix.platform == 'ubuntu-24.04' # This must match the platform value defined above.
|
if: matrix.platform == 'ubuntu-22.04' # This must match the platform value defined above.
|
||||||
run: |
|
run: |
|
||||||
sudo apt update;
|
sudo apt update;
|
||||||
sudo apt install -y \
|
sudo apt install -y \
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue