forked from mesonbuild/wrapdb
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
612 additions
and
62 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 |
---|---|---|
@@ -0,0 +1,41 @@ | ||
name: Build all | ||
on: workflow_dispatch | ||
|
||
jobs: | ||
Ubuntu: | ||
runs-on: ubuntu-latest | ||
env: | ||
TEST_BUILD_ALL: 1 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Fetch tags and unshallow | ||
run: git fetch --unshallow --tags | ||
|
||
- name: Install packages | ||
run: | | ||
sudo apt-get -y install build-essential python3-pip ninja-build nasm | ||
pip install git+https://github.com/mesonbuild/meson | ||
- name: Sanity Checks | ||
run: | | ||
./tools/sanity_checks.py | ||
VisualStudio: | ||
runs-on: windows-latest | ||
env: | ||
TEST_BUILD_ALL: 1 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Fetch tags and unshallow | ||
run: git fetch --unshallow --tags | ||
|
||
- name: Install packages | ||
run: | | ||
pip install git+https://github.com/mesonbuild/meson | ||
- uses: ilammy/msvc-dev-cmd@v1 | ||
- name: Sanity Checks | ||
run: | | ||
python tools/sanity_checks.py |
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 |
---|---|---|
|
@@ -20,26 +20,33 @@ jobs: | |
# it requires a Personal Access Token. Instead clone meson and do it ourself. | ||
# This job is copied from Meson's workflows. | ||
update_website: | ||
env: | ||
HAS_SSH_KEY: ${{ secrets.WEBSITE_PRIV_KEY != '' }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Install package | ||
run: | | ||
sudo apt-get -y install python3-pip ninja-build libjson-glib-dev | ||
pip install meson hotdoc | ||
pip install hotdoc chevron strictyaml | ||
- name: Setup SSH Keys and known_hosts | ||
env: | ||
SSH_AUTH_SOCK: /tmp/ssh_agent.sock | ||
run: | | ||
ssh-agent -a $SSH_AUTH_SOCK > /dev/null | ||
ssh-add - <<< "${{ secrets.WEBSITE_PRIV_KEY }}" | ||
- name: Update website | ||
env: | ||
SSH_AUTH_SOCK: /tmp/ssh_agent.sock | ||
if: env.HAS_SSH_KEY == 'true' | ||
- name: Build website | ||
run: | | ||
git config --global user.name "github-actions" | ||
git config --global user.email "[email protected]" | ||
git clone https://github.com/mesonbuild/meson.git | ||
cd meson/docs | ||
meson setup _build | ||
../meson.py setup _build | ||
ninja -C _build | ||
- name: Update website | ||
env: | ||
SSH_AUTH_SOCK: /tmp/ssh_agent.sock | ||
run: | | ||
cd meson/docs | ||
ninja -C _build upload | ||
if: env.HAS_SSH_KEY == 'true' |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
[wrap-file] | ||
directory = fdk-aac-2.0.2 | ||
source_url = https://sourceforge.net/projects/opencore-amr/files/fdk-aac/fdk-aac-2.0.2.tar.gz/download | ||
source_filename = fdk-aac-2.0.2.tar.gz | ||
source_hash = c9e8630cf9d433f3cead74906a1520d2223f89bcd3fa9254861017440b8eb22f | ||
patch_directory = fdk-aac | ||
|
||
[provide] | ||
fdk-aac = fdk_aac_dep |
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,7 +1,6 @@ | ||
[wrap-file] | ||
directory = libxml++-3.0.1 | ||
source_url = ftp://ftp.gnome.org/pub/GNOME/sources/libxml++/3.0/libxml++-3.0.1.tar.xz | ||
source_url = https://download.gnome.org/sources/libxml++/3.0/libxml++-3.0.1.tar.xz | ||
source_filename = libxml++-3.0.1.tar.xz | ||
source_hash = 19dc8d21751806c015179bc0b83f978e65c878724501bfc0b6c1bcead29971a6 | ||
patch_directory = libxmlpp | ||
|
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
foreach header: fdk_aac_headers | ||
configure_file(input: '..' / header, copy: true, output: header.split('/')[-1]) | ||
endforeach |
Oops, something went wrong.