try to fix endianess test on MacOS #289
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Ubuntu 22.04 make | |
on: | |
push: | |
branches: [ master, development, build-automation, digital-stage-client ] | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: fetchtags | |
run: git fetch --unshallow --tags | |
- name: submods | |
run: git submodule init && git submodule update --init --recursive && (cd libov && git submodule update --init) | |
- name: dependencies | |
run: sudo apt update && | |
sudo apt install --assume-yes git liblo-dev nodejs libcurl4-openssl-dev build-essential libasound2-dev libeigen3-dev libfftw3-dev libfftw3-double3 libfftw3-single3 libgsl-dev libjack-jackd2-dev libltc-dev libmatio-dev libsndfile1-dev libsamplerate0-dev libboost-all-dev nlohmann-json3-dev libsoundio-dev libxerces-c-dev libgtkmm-3.0-dev libcairomm-1.0-dev libcunit1-dev | |
- name: make | |
run: make lib libtest && make | |
- name: packaging | |
run: make packaging | |
- name: test-install | |
run: sudo apt install --assume-yes ./packaging/deb/debian/*/ovbox-cli_*.deb | |
- name: showversion | |
run: dpkg-query -l ovbox-cli | |
- name: test-run | |
run: ovbox_cli --deviceid=000000000000 & sleep 20;killall ovbox_cli | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: ov-client-ubuntu-22.04 | |
path: packaging/deb/debian/*/*.deb | |
- name: testendianess | |
run: make testendianess |