You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
name: buildopusencon: workflow_dispatchjobs:
buildopusenc:
runs-on: ubuntu-22.04steps:
- name: Install Prerequisitesrun: sudo apt-get update && sudo apt-get install -y git autoconf gcc libtool make libogg-dev libopus-dev libopusfile-dev libflac-dev libpcap-dev xz-utils zip
- name: Clonerun: | git clone https://github.com/xiph/libopusenc git clone https://github.com/xiph/opus-tools
- name: Buildrun: | cd libopusenc bash ./autogen.sh bash ./configure --prefix="$(pwd)/../build" make check make install export PKG_CONFIG_PATH="$(pwd)/../build/lib/pkgconfig" cd ../opus-tools bash ./autogen.sh bash ./configure --prefix="$(pwd)/../build" make check make install
- name: Archive artifactsuses: actions/upload-artifact@v2with:
name: buildpath: build/
The text was updated successfully, but these errors were encountered:
vadimkantorov
changed the title
GitHub build workflow for simpler user experimentation
Add GitHub build workflow (.github/workflows/build.yml) for simpler user experimentation
Oct 31, 2023
Could be sth like:
The text was updated successfully, but these errors were encountered: