mirror of
https://github.com/wofferl/proxmox-backup-arm64
synced 2025-12-06 00:13:41 +00:00
Create client-ubuntu.yml
Add workflow for client build test on ubuntu 22.04
This commit is contained in:
21
.github/workflows/client-ubuntu.yml
vendored
Normal file
21
.github/workflows/client-ubuntu.yml
vendored
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
name: Client build ubuntu 22.04
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-22.04
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Installing dependencies
|
||||||
|
run: |
|
||||||
|
sudo apt-get install -y --no-install-recommends build-essential curl ca-certificates sudo git lintian fakeroot pkg-config libudev-dev libssl-dev libapt-pkg-dev libclang-dev libpam0g-dev
|
||||||
|
- name: Installing rust
|
||||||
|
run: |
|
||||||
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs -sSf | sh -s -- -y
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- name: Running compile script
|
||||||
|
run: |
|
||||||
|
source ${HOME}/.cargo/env
|
||||||
|
./build.sh client
|
||||||
Reference in New Issue
Block a user