-
Notifications
You must be signed in to change notification settings - Fork 282
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Build for arm64-osx * More required packages * Remove unsupported filter for speex and speexdsp * Fix vcpkg ppc64el * Make Git available
- Loading branch information
1 parent
5c9346c
commit 8640156
Showing
19 changed files
with
99 additions
and
1,486 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,4 @@ | |
*.c text eol=lf | ||
*.cpp text eol=lf | ||
*.m text eol=lf | ||
vcpkg-ppc64el.patch text eol=crlf |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -296,6 +296,7 @@ jobs: | |
matrix: | ||
arch: | ||
- x86_64 | ||
- arm64 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
@@ -321,12 +322,12 @@ jobs: | |
run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "Jitsi GitHub Action" | ||
brew install nasm | ||
brew install nasm autoconf automake libtool | ||
resources/mac-cmake.sh ${{ steps.install_java.outputs.path }} ${{ matrix.arch }} | ||
- name: The job has failed | ||
if: ${{ failure() }} | ||
run: tar --exclude *.o -cvJf target/debug-logs.tar.xz src/native/cmake-build | ||
run: tar --exclude *.o -cvJf target/debug-logs.tar.xz src/native/cmake-build-${{ matrix.arch }} | ||
|
||
- name: Upload Debug logs | ||
if: ${{ failure() }} | ||
|
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,36 @@ | ||
#!/usr/bin/env bash | ||
set -e | ||
set -x | ||
sudo apt-get update - | ||
sudo apt-get update | ||
sudo apt-get install -y distro-info | ||
|
||
# dev-tools from backports because https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/1916633 | ||
DEVTOOLS_PACKAGE=ubuntu-dev-tools | ||
UBUNTUTOOLS_PACKAGE=python3-ubuntutools | ||
if lsb_release -i -s == "Ubuntu"; then | ||
case $(lsb_release -c -s) in | ||
bionic | focal) | ||
DEVTOOLS_PACKAGE=$DEVTOOLS_PACKAGE/$(lsb_release -c -s)-backports | ||
UBUNTUTOOLS_PACKAGE=$UBUNTUTOOLS_PACKAGE/$(lsb_release -c -s)-backports | ||
;; | ||
esac | ||
elif lsb_release -i -s == "Debian"; then | ||
case $(lsb_release -c -s) in | ||
stretch | buster) | ||
>&2 echo "Packaging needs 'ubuntu-dev-tools' >= 1.181, which is only available in Bullseye" | ||
exit 1 | ||
;; | ||
esac | ||
fi | ||
|
||
sudo apt-get install -y \ | ||
debhelper \ | ||
aptitude \ | ||
sbuild \ | ||
schroot \ | ||
ubuntu-dev-tools/$(lsb_release -c -s)-backports \ | ||
python3-ubuntutools/$(lsb_release -c -s)-backports \ | ||
"$DEVTOOLS_PACKAGE" \ | ||
"$UBUNTUTOOLS_PACKAGE" \ | ||
debian-archive-keyring \ | ||
git-buildpackage \ | ||
rename \ | ||
distro-info | ||
rename | ||
sudo adduser $USER sbuild |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
cmake-build-* | ||
cmake-build* | ||
.idea/ | ||
.vs/ | ||
out/ | ||
|
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
This file was deleted.
Oops, something went wrong.
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
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
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.