aboutsummaryrefslogtreecommitdiffstats
path: root/.github/actions
diff options
context:
space:
mode:
Diffstat (limited to '.github/actions')
-rw-r--r--.github/actions/download-qt/action.yml22
-rw-r--r--.github/actions/download-qtc/action.yml15
2 files changed, 37 insertions, 0 deletions
diff --git a/.github/actions/download-qt/action.yml b/.github/actions/download-qt/action.yml
new file mode 100644
index 000000000..cf7ade428
--- /dev/null
+++ b/.github/actions/download-qt/action.yml
@@ -0,0 +1,22 @@
+name: 'Download Qt'
+description: 'Downloads Qt'
+inputs:
+ version:
+ description: 'Qt version'
+ required: false
+ default: '5.15.0'
+ target:
+ description: 'Qt target (desktop, ios, android)'
+ required: false
+ default: 'desktop'
+ toolchain:
+ description: 'Qt toolchain'
+ required: true
+runs:
+ using: "composite"
+ steps:
+ - name: Install Qt
+ run: |
+ export QT_DIR=$(./scripts/install-qt.sh -d $HOME/Qt --version ${{ inputs.version }} --target ${{ inputs.target }} --toolchain ${{ inputs.toolchain }} qtbase qtdeclarative qttools qtscript qtscxml)
+ echo ::add-path::$QT_DIR
+ shell: bash
diff --git a/.github/actions/download-qtc/action.yml b/.github/actions/download-qtc/action.yml
new file mode 100644
index 000000000..ba5486298
--- /dev/null
+++ b/.github/actions/download-qtc/action.yml
@@ -0,0 +1,15 @@
+name: 'Download Qt Creator'
+description: 'Downloads Qt Creator'
+inputs:
+ version:
+ description: 'Qt Creator version'
+ required: false
+ default: '4.12.4'
+runs:
+ using: "composite"
+ steps:
+ - name: Install Qt Creator
+ run: |
+ export QTC_DIR=$(./scripts/install-qt.sh -d $HOME/Qt --version ${{ inputs.version }} qtcreator)
+ echo ::add-path::$QTC_DIR
+ shell: bash