Skip to content

Commit

Permalink
Merge branch 'AcademySoftwareFoundation:master' into rqd-python-tests-v2
Browse files Browse the repository at this point in the history
  • Loading branch information
lithorus authored Dec 4, 2024
2 parents fc55a2f + a266ef5 commit d578aa4
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 2 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/testing-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,23 @@ jobs:
chown -R aswfuser:aswfgroup .
su -c "cd cuebot && ./gradlew build --stacktrace --info" aswfuser
integration_test:
name: Run Integration Test
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Run test
run: ci/run_integration_test.sh

- name: Archive log files
uses: actions/upload-artifact@v3
if: ${{ always() }}
with:
name: test-logs
path: /tmp/opencue-test/*.log

lint_python:
name: Lint Python Code
runs-on: ubuntu-22.04
Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ OpenCue provides the following features to help manage rendering jobs at scale:
For more information on installing, using, and administering OpenCue, visit
[www.opencue.io](https://www.opencue.io).

Watch YouTube videos on the [OpenCue Playlist](https://www.youtube.com/playlist?list=PL9dZxafYCWmzSBEwVT2AQinmZolYqBzdp) of the Academy Software Foundation (ASWF) to learn more.

# Meeting notes

Starting from May 2024, all Opencue meeting notes are stored on the [Opencue Confluence page](http://wiki.aswf.io/display/OPENCUE/OpenCue+Home).
Expand All @@ -51,3 +53,7 @@ For meeting notes before May 2024, please refer to the Opencue repository in the
To join the OpenCue discussion forum for users and admins, join the
[opencue-user mailing list](https://lists.aswf.io/g/opencue-user) or email the
group directly at <[email protected]>.

Join the [Opencue Slack channel](https://academysoftwarefdn.slack.com/archives/CMFPXV39Q).

Working Group meets biweekly at 2pm PST on [Zoom](https://www.google.com/url?q=https://zoom-lfx.platform.linuxfoundation.org/meeting/95509555934?password%3Da8d65f0e-c5f0-44fb-b362-d3ed0c22b7c1&sa=D&source=calendar&ust=1717863981078692&usg=AOvVaw1zRcYz7VPAwfwOXeBPpoM6).
2 changes: 1 addition & 1 deletion rqd/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
'grpcio',
'grpcio-tools',
'psutil',
'pywin32==224; platform_system == "Windows"',
'pywin32==301; platform_system == "Windows"',
'wmi==1.5.1; platform_system == "Windows"'
]
)
Expand Down
2 changes: 1 addition & 1 deletion sandbox/install-client-sources.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ python -m grpc_tools.protoc -I=. \
--python_out=../pycue/opencue/compiled_proto \
--grpc_python_out=../pycue/opencue/compiled_proto ./*.proto
cd ..
python ../ci/fix_compiled_proto.py pycue/opencue/compiled_proto
python ci/fix_compiled_proto.py pycue/opencue/compiled_proto

# Install all client packages.
pip install pycue/ pyoutline/ cueadmin/ cuesubmit/ cuegui/

0 comments on commit d578aa4

Please sign in to comment.