Skip to content

Use env variable to specify build_machine #120

Use env variable to specify build_machine

Use env variable to specify build_machine #120

Workflow file for this run

name: build
on:
push:
workflow_dispatch:
inputs:
package_name:
description: Package name
type: choice
options:
- all
- odrcore
- pdf2htmlex
- fontforge
- poppler
- poppler-data
- cairo
- openlibm
- fontconfig
- glib
package_version:
description: Package version (leave empty to build all versions)
required: false
upload_to_artifactory:
description: Upload built packages to artifactory
type: boolean
default: false
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
env:
CCACHE_DIR: ${{ github.workspace }}/ccache
CCACHE_MAXSIZE: 500M
CCACHE_KEY_SUFFIX: r1
BUILD_MACHINE: ubuntu-22.04
jobs:
generate-matrices:
runs-on: ${{ env.BUILD_MACHINE }}

Check failure on line 41 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / build

Invalid workflow file

The workflow is not valid. .github/workflows/build.yml (Line: 41, Col: 14): Unrecognized named-value: 'env'. Located at position 1 within expression: env.BUILD_MACHINE .github/workflows/build.yml (Line: 78, Col: 14): Unrecognized named-value: 'env'. Located at position 1 within expression: env.BUILD_MACHINE
outputs:
packages-with-dependents: ${{ steps.list-packages-with-dependents.outputs.packages }}
steps:
- name: checkout
uses: actions/checkout@v4
with:
# Fetch whole git history.
# Required to parse modified packages
fetch-depth: 0
- name: setup python 3.12
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: install python dependencies
run: pip install --upgrade pip conan
- name: conan config
run: conan config install .github/config/${{ env.BUILD_MACHINE }}/conan
- name: Conan export all packages
run: python scripts/conan_export_all_packages.py
# Generate dependency graphs for all disjoint packages
- run: conan graph info recipes/odrcore/all/conanfile.py --version=4.0.0 --profile:host=android-21-armv8 --format=json | tee odrcore-dependency-tree.json
shell: bash # bash shell needed to pipefail on error
- run: conan graph info recipes/pdf2htmlex/all/conanfile.py --version=0.18.8.rc1-20240619-git --profile:host=android-21-armv8 --format=json | tee pdf2htmlEX-dependency-tree.json
shell: bash # bash shell needed to pipefail on error
- name: Get requested packages and dependants from commits and workflow_dispatch inputs
id: list-packages-with-dependents
run: python scripts/list_package_versions.py --dependency-graph odrcore-dependency-tree.json pdf2htmlEX-dependency-tree.json
env:
GITHUB_EVENT: ${{ toJson(github.event) }}
build:
runs-on: ${{ env.BUILD_MACHINE }}
if: ${{ needs.generate-matrices.outputs.packages-with-dependents != '[]' }}
name: b ${{ matrix.package.package_reference }} - ${{ matrix.config.host_profile }}
needs:
- generate-matrices
strategy:
fail-fast: false
matrix:
package: ${{ fromJson(needs.generate-matrices.outputs.packages-with-dependents) }}
config:
- { host_profile: ubuntu }
- { host_profile: android-23-armv8, ndk_version: 26.3.11579264 }
- { host_profile: android-23-armv7, ndk_version: 26.3.11579264 }
- { host_profile: android-23-x86, ndk_version: 26.3.11579264 }
- { host_profile: android-23-x86_64, ndk_version: 26.3.11579264 }
- { host_profile: android-21-armv8, ndk_version: 26.3.11579264 }
- { host_profile: android-21-armv7, ndk_version: 26.3.11579264 }
- { host_profile: android-21-x86, ndk_version: 26.3.11579264 }
- { host_profile: android-21-x86_64, ndk_version: 26.3.11579264 }
# Known not working build configurations
# Would be cool to actually solve odrcore/1.0.0 for Android
exclude:
- package: { "package_reference": "odrcore/1.0.0", "package": "odrcore", "version": "1.0.0", "conanfile": "recipes/odrcore/all/conanfile.py", "test_conanfile": "recipes/odrcore/all/test_package/conanfile.py" }
config: { host_profile: android-23-armv8, ndk_version: 26.3.11579264 }
- package: { "package_reference": "odrcore/1.0.0", "package": "odrcore", "version": "1.0.0", "conanfile": "recipes/odrcore/all/conanfile.py", "test_conanfile": "recipes/odrcore/all/test_package/conanfile.py" }
config: { host_profile: android-23-armv7, ndk_version: 26.3.11579264 }
- package: { "package_reference": "odrcore/1.0.0", "package": "odrcore", "version": "1.0.0", "conanfile": "recipes/odrcore/all/conanfile.py", "test_conanfile": "recipes/odrcore/all/test_package/conanfile.py" }
config: { host_profile: android-23-x86, ndk_version: 26.3.11579264 }
- package: { "package_reference": "odrcore/1.0.0", "package": "odrcore", "version": "1.0.0", "conanfile": "recipes/odrcore/all/conanfile.py", "test_conanfile": "recipes/odrcore/all/test_package/conanfile.py" }
config: { host_profile: android-23-x86_64, ndk_version: 26.3.11579264 }
- package: { "package_reference": "odrcore/1.0.0", "package": "odrcore", "version": "1.0.0", "conanfile": "recipes/odrcore/all/conanfile.py", "test_conanfile": "recipes/odrcore/all/test_package/conanfile.py" }
config: { host_profile: android-21-armv8, ndk_version: 26.3.11579264 }
- package: { "package_reference": "odrcore/1.0.0", "package": "odrcore", "version": "1.0.0", "conanfile": "recipes/odrcore/all/conanfile.py", "test_conanfile": "recipes/odrcore/all/test_package/conanfile.py" }
config: { host_profile: android-21-armv7, ndk_version: 26.3.11579264 }
- package: { "package_reference": "odrcore/1.0.0", "package": "odrcore", "version": "1.0.0", "conanfile": "recipes/odrcore/all/conanfile.py", "test_conanfile": "recipes/odrcore/all/test_package/conanfile.py" }
config: { host_profile: android-21-x86, ndk_version: 26.3.11579264 }
- package: { "package_reference": "odrcore/1.0.0", "package": "odrcore", "version": "1.0.0", "conanfile": "recipes/odrcore/all/conanfile.py", "test_conanfile": "recipes/odrcore/all/test_package/conanfile.py" }
config: { host_profile: android-21-x86_64, ndk_version: 26.3.11579264 }
steps:
- name: checkout
uses: actions/checkout@v4
- name: ubuntu install ccache
if: runner.os == 'Linux'
run: |
sudo apt install ccache
ccache -V
- name: macos install ccache
if: runner.os == 'macOS'
run: |
brew install ccache
ccache -V
- name: setup python 3.12
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: install python dependencies and setuptools (required to build GLib)
run: pip install --upgrade pip conan setuptools
- name: install NDK
if: startsWith(matrix.config.host_profile, 'android')
run: echo "y" | sudo ${ANDROID_HOME}/cmdline-tools/latest/bin/sdkmanager --install "ndk;${{ matrix.config.ndk_version }}"
- name: conan remote
run: conan remote add --index 0 odr https://artifactory.opendocument.app/artifactory/api/conan/conan
- name: conan config
run: conan config install .github/config/${{ env.BUILD_MACHINE }}/conan
# Export all recipes to local conan cache, to make sure all changes in all dependencies are picked up
- name: Conan export all packages
run: python scripts/conan_export_all_packages.py
- name: cache
uses: actions/cache@v4
with:
path: |
~/.ccache
/Users/runner/Library/Caches/ccache
key: ${{ env.BUILD_MACHINE }}-${{ matrix.config.host_profile }}-${{ env.CCACHE_KEY_SUFFIX }}
restore-keys: |
${{ env.BUILD_MACHINE }}-${{ matrix.config.host_profile }}-
- name: conan install
run: conan install ${{ matrix.package.conanfile }} --version ${{ matrix.package.version }} --build missing --profile:host ${{ matrix.config.host_profile }} --profile:build ubuntu
- name: conan source
run: conan source ${{ matrix.package.conanfile }} --version ${{ matrix.package.version }}
- name: conan build
run: conan build ${{ matrix.package.conanfile }} --version ${{ matrix.package.version }} --profile:host ${{ matrix.config.host_profile }} --profile:build ubuntu
- name: conan export
run: conan export ${{ matrix.package.conanfile }} --version ${{ matrix.package.version }}
- name: conan export-pkg
run: conan export-pkg ${{ matrix.package.conanfile }} --version ${{ matrix.package.version }} --profile:host ${{ matrix.config.host_profile }} --profile:build ubuntu
- name: conan test
run: conan test ${{ matrix.package.test_conanfile }} ${{ matrix.package.package_reference }} --build missing --profile:host ${{ matrix.config.host_profile }} --profile:build ubuntu
- name: conan login
if: github.ref == 'refs/heads/main' || github.event_name == 'workflow_dispatch' && github.event.inputs.upload_to_artifactory == 'true'
run: conan remote login odr admin --password ${{ secrets.ARTIFACTORY }}
- name: conan upload
if: github.ref == 'refs/heads/main' || github.event_name == 'workflow_dispatch' && github.event.inputs.upload_to_artifactory == 'true'
run: conan upload "*" --check --confirm --remote odr
- run: ccache --show-stats