Skip to content

Commit

Permalink
Merge pull request #1669 from codefori/feature/new_default_actions
Browse files Browse the repository at this point in the history
New addtional default actions
  • Loading branch information
worksofliam authored Dec 11, 2023
2 parents 34d8f66 + b3635a1 commit 2dd8265
Showing 1 changed file with 37 additions and 1 deletion.
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/"
]
}
]
}

0 comments on commit 2dd8265

Please sign in to comment.