Skip to content

Add The Qt Company's family of Qt extensions #856

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

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions .github/workflows/publish-extensions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@ jobs:
with:
distribution: "microsoft"
java-version: "17"
- uses: actions/setup-go@v5
with:
go-version: 'stable'
- name: Install dependencies for native modules
run: |
sudo apt-get update
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/validate-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ jobs:
run: |
pyenv install 3.8
pyenv global 3.8
- uses: actions/setup-go@v5
with:
go-version: 'stable'
- run: EXTENSIONS=$(node diff-extensions) node publish-extensions
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
47 changes: 47 additions & 0 deletions extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -1375,6 +1375,53 @@
"tecosaur.latex-utilities": {
"repository": "https://github.com/tecosaur/LaTeX-Utilities"
},
"theqtcompany.qt": {
"repository": "https://github.com/qt-labs/vscodeext",
"location": "extension_packs/qt/"
},
"theqtcompany.qt-cpp": {
"repository": "https://github.com/qt-labs/vscodeext",
"location": "qt-cpp/",
"prepublish": "npm run ci:qt-lib && npm run compile:qt-lib && npm run compile:qt-cpp"
},
"theqtcompany.qt-cpp-pack": {
"repository": "https://github.com/qt-labs/vscodeext",
"location": "extension_packs/cpp/"
},
"theqtcompany.qt-core": {
"repository": "https://github.com/qt-labs/vscodeext",
"location": "qt-core/",
"custom": [
"npm ci",
"npm run ci:qt-lib",
"npm run ci:qt-core",

"npm run compile:qt-lib",

"go install github.com/goreleaser/goreleaser/v2@latest",
"cd qt-cli && GORELEASER_CURRENT_TAG=${VERSION} goreleaser release --snapshot --clean",
"mkdir -p qt-core/res/qtcli",
"if [ -e qt-cli/dist/bin ]; then cp -r qt-cli/dist/bin/* qt-core/res/qtcli; else cp qt-cli/dist/qtcli_{linux,windows,darwin_fat}* qt-core/res/qtcli; fi",

"npm run package:qt-core",
"mv qt-core/out/qt-core-*.vsix qt-core/out/qt-core.vsix"
],
"extensionFile": "out/qt-core.vsix"
},
"theqtcompany.qt-qml": {
"repository": "https://github.com/qt-labs/vscodeext",
"location": "qt-qml/",
"prepublish": "npm run ci:qt-lib && npm run compile:qt-lib && npm run compile:qt-qml"
},
"theqtcompany.qt-ui": {
"repository": "https://github.com/qt-labs/vscodeext",
"location": "qt-ui/",
"prepublish": "npm run ci:qt-lib && npm run compile:qt-lib && npm run compile:qt-ui"
},
"theqtcompany.qt-wasm-pack": {
"repository": "https://github.com/qt-labs/vscodeext",
"location": "extension_packs/wasm/"
},
"Tobiah.unity-tools": {
"repository": "https://github.com/TobiahZ/unity-tools"
},
Expand Down
Loading