Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: Add build on VFX Reference Platform 2023 #125

Merged
merged 2 commits into from
Oct 2, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 19 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name_prefix: Linux CentOS 7 VFX CY2021
release_prefix: linux-vfx2021
ostype: linux
distro: centos7
aswfdockerbuild: true
os: ubuntu-latest
container: aswf/ci-base:2021
vfx-cy: 2021
Expand All @@ -32,7 +32,7 @@ jobs:
- name_prefix: Linux CentOS 7 VFX CY2022
release_prefix: linux-vfx2022
ostype: linux
distro: centos7
aswfdockerbuild: true
os: ubuntu-latest
container: aswf/ci-base:2022
vfx-cy: 2022
Expand All @@ -43,10 +43,24 @@ jobs:
cxx-compiler: clang++
cc-compiler: clang
compiler-desc: Clang
- name_prefix: Linux Rocky 8 VFX CY2023
release_prefix: linux-vfx2023
ostype: linux
aswfdockerbuild: true
os: ubuntu-latest
garyo marked this conversation as resolved.
Show resolved Hide resolved
container: aswf/ci-base:2023
vfx-cy: 2023
has_cmake_presets: false
buildtype: Release
conan_version: 2.0.4
garyo marked this conversation as resolved.
Show resolved Hide resolved
cxx-standard: 17
cxx-compiler: clang++
cc-compiler: clang
compiler-desc: Clang
- name_prefix: Linux Ubuntu
release_prefix: linux-ubuntu
ostype: linux
distro: ubuntu
aswfdockerbuild: false
os: ubuntu-latest
container: null
has_cmake_presets: true
Expand Down Expand Up @@ -112,9 +126,9 @@ jobs:
run: |
conan profile detect

- name: Install system dependencies
- name: Install system dependencies if needed
uses: ConorMacBride/install-package@v1
if: ${{ matrix.distro == 'ubuntu' }}
if: ${{ matrix.aswfdockerbuild == false }}
with:
apt: libgl-dev libgl1-mesa-dev
brew:
Expand Down