[CI/CD] First iteration PR and Dev workflow for UE5 linux (#9194) #1
This file contains hidden or 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: UE5-Dev | |
on: | |
push: | |
branches: | |
- ue5-dev | |
workflow_dispatch: # Allow manual trigger | |
concurrency: | |
group: push-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
ubuntu-dev: | |
name: Ubuntu Dev | |
uses: ./.github/workflows/_ci-ubuntu.yml | |
secrets: | |
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }} | |
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }} | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_ACCESS_KEY: ${{ secrets.AWS_ACCESS_KEY }} | |
with: | |
python-versions: "3.12" | |
smoke-test-python-versions: "3.12" | |
additional-maps: false | |
upload-package: true | |
upload-replace-latest: true | |
upload-docker: false | |
# windows-dev: | |
# name: Windows Dev | |
# uses: ./.github/workflows/_ci-windows.yml | |
# secrets: | |
# AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
# AWS_ACCESS_KEY: ${{ secrets.AWS_ACCESS_KEY }} | |
# with: | |
# python-versions: "3.10,3.11,3.12" | |
# additional-maps: true | |
# upload-package: true | |
# upload-replace-latest: true |