Skip to content
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

New addtional default actions #1669

Merged
merged 2 commits into from
Dec 11, 2023
Merged
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
38 changes: 37 additions & 1 deletion src/api/local/LocalLanguageActions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -134,10 +134,20 @@ export const LocalLanguageActions: Record<string, Action[]> = {
"extensions": [
`GLOBAL`
],
"name": `Create Service Program (CRTSRVPGM)`,
"name": `Create Service Program (CRTSRVPGM EXPORT(*ALL))`,
"command": `CRTSRVPGM SRVPGM(&CURLIB/&NAME) EXPORT(*ALL) BNDSRVPGM(*NONE) BNDDIR(*NONE) ACTGRP(*CALLER)`,
environment: `ile`
},
{
"extensions": [
"BND",
"BINDER"
],
"deployFirst": true,
"name": "Create Service Program (CRTSRVPGM with source)",
"command": "CRTSRVPGM SRVPGM(&CURLIB/&NAME) SRCSTMF('&RELATIVEPATH') BNDSRVPGM(*NONE) BNDDIR(*NONE) ACTGRP(*CALLER)",
"environment": "ile"
}
],
"GNU Make": [
{
Expand Down Expand Up @@ -186,5 +196,31 @@ export const LocalLanguageActions: Record<string, Action[]> = {
".evfevent"
]
}
],
"Source Orbit": [
{
"name": "Build current with Source Orbit 🔨",
"command": "so -bf make -s &RELATIVEPATH && /QOpenSys/pkgs/bin/gmake LIBL='&LIBLS' BIN_LIB=&CURLIB OPT=*EVENTF",
"environment": "pase",
"deployFirst": true,
"extensions": [
"GLOBAL"
],
"postDownload": [
".evfevent/"
]
},
{
"name": "Build entire project with Source Orbit 🔨",
"command": "so -bf make && /QOpenSys/pkgs/bin/gmake LIBL='&LIBLS' BIN_LIB=&CURLIB OPT=*EVENTF",
"environment": "pase",
"deployFirst": true,
"extensions": [
"GLOBAL"
],
"postDownload": [
".evfevent/"
]
}
]
}