linux.yml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. name: Linux Installer
  2. run-name: ${{ inputs.cura_conan_version }} by @${{ github.actor }}
  3. on:
  4. workflow_dispatch:
  5. inputs:
  6. cura_conan_version:
  7. description: 'Cura Conan Version'
  8. default: 'cura/latest@ultimaker/testing'
  9. required: true
  10. type: string
  11. conan_args:
  12. description: 'Conan args: eq.: --require-override'
  13. default: ''
  14. required: false
  15. type: string
  16. enterprise:
  17. description: 'Build Cura as an Enterprise edition'
  18. default: false
  19. required: true
  20. type: boolean
  21. staging:
  22. description: 'Use staging API'
  23. default: false
  24. required: true
  25. type: boolean
  26. architecture:
  27. description: 'Architecture'
  28. required: true
  29. default: 'X64'
  30. type: choice
  31. options:
  32. - X64
  33. operating_system:
  34. description: 'OS'
  35. required: true
  36. default: 'self-hosted-Ubuntu22-X64'
  37. type: choice
  38. options:
  39. - ubuntu-22.04
  40. - self-hosted-Ubuntu22-X64
  41. jobs:
  42. linux-installer:
  43. uses: ultimaker/cura-workflows/.github/workflows/cura-installer-linux.yml@main
  44. with:
  45. cura_conan_version: ${{ inputs.cura_conan_version }}
  46. conan_args: ${{ inputs.conan_args }}
  47. enterprise: ${{ inputs.enterprise }}
  48. staging: ${{ inputs.staging }}
  49. architecture: ${{ inputs.architecture }}
  50. operating_system: ${{ inputs.operating_system }}
  51. secrets: inherit