PR: ACES 2.0 #338
Workflow file for this run
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: Configuration Artifacts | |
on: [push, pull_request] | |
jobs: | |
configuration-artifacts: | |
name: ${{ matrix.os }} - Python ${{ matrix.python-version }} | |
strategy: | |
matrix: | |
os: [ubuntu-20.04] | |
python-version: [3.11] | |
fail-fast: false | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Environment Variables | |
run: | | |
echo "CI_PYTHON_VERSION=${{ matrix.python-version }}" >> $GITHUB_ENV | |
echo "CI_PACKAGE=opencolorio_config_aces" >> $GITHUB_ENV | |
echo "CI_SHA=${{ github.sha }}" >> $GITHUB_ENV | |
shell: bash | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Dependencies | |
run: | | |
sudo apt-get --yes install graphviz graphviz-dev | |
- name: Install Poetry | |
run: | | |
curl -sSL https://install.python-poetry.org | POETRY_HOME=$HOME/.poetry python3 - | |
echo "$HOME/.poetry/bin" >> $GITHUB_PATH | |
shell: bash | |
- name: Install Package Dependencies | |
run: | | |
poetry run python -m pip install --upgrade pip | |
poetry install | |
shell: bash | |
- name: ACES - Conversion Graph | |
run: | | |
poetry run invoke build-aces-conversion-graph | |
shell: bash | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: aces-conversion-graph | |
path: | | |
build/aces/graph/ | |
- name: Generation - Config - Common Tests | |
run: | | |
poetry run invoke build-config-common-tests | |
shell: bash | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: config-common-tests | |
path: | | |
build/config/common/tests/ | |
- name: Generation - Config - ACES Reference (Analytical) | |
run: | | |
poetry run invoke build-config-reference-analytical | |
shell: bash | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: config-reference-analytical | |
path: | | |
build/config/aces/analytical/ | |
- name: Generation - Config - ACES Reference | |
run: | | |
poetry run invoke build-config-reference | |
shell: bash | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: config-reference | |
path: | | |
build/config/aces/reference/ | |
- name: Generation - Config - ACES CG | |
run: | | |
poetry run invoke build-config-cg | |
shell: bash | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: config-cg | |
path: | | |
build/config/aces/cg/ | |
- name: Generation - Config - ACES Studio | |
run: | | |
poetry run invoke build-config-studio | |
shell: bash | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: config-studio | |
path: | | |
build/config/aces/studio/ |