Skip to content

feat(ci): test armv8 builds #64

feat(ci): test armv8 builds

feat(ci): test armv8 builds #64

Workflow file for this run

on:
push:
pull_request:
name: 🏗️ Build
jobs:
build-fedora37:
runs-on: ubuntu-latest
container: fedora:37
steps:
- name: 📥 Checkout
uses: actions/checkout@v3
- name: 👷 Build Dependencies
run: |
dnf install -y make automake gcc gcc-c++ kernel-devel cmake git
dnf install -y pipewire-devel pipewire-libs pulseaudio-libs-devel pipewire-pulseaudio
- name: 🔨 Build Server
run: |
cmake -B build
cmake --build build
- name: 🚀 Upload Server
uses: actions/upload-artifact@v3
with:
name: server-x86-64
path: build/server
- name: 🍃 Install Node
uses: actions/setup-node@v3
with:
node-version: 16
- name: 🍃 Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8
run_install: false
- name: 🔨 Build Addon
run: |
rm -rf build
pnpm install
- name: 🚀 Upload Addon
uses: actions/upload-artifact@v3
with:
name: addon-x86-64
path: build/Release
build-fedora37-arm:
runs-on: ubuntu-latest
container: arm64v8/fedora:37
steps:
- name: 📥 Checkout
uses: actions/checkout@v3
- name: 👷 Build Dependencies
run: |
dnf install -y make automake gcc gcc-c++ kernel-devel cmake git
dnf install -y pipewire-devel pipewire-libs pulseaudio-libs-devel pipewire-pulseaudio
- name: 🔨 Build Server
run: |
cmake -B build
cmake --build build
- name: 🚀 Upload Server
uses: actions/upload-artifact@v3
with:
name: server-armv8
path: build/server
- name: 🍃 Install Node
uses: actions/setup-node@v3
with:
node-version: 16
- name: 🍃 Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8
run_install: false
- name: 🔨 Build Addon
run: |
rm -rf build
pnpm install
- name: 🚀 Upload Addon
uses: actions/upload-artifact@v3
with:
name: addon-armv8
path: build/Release