-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from fluent-ci-templates/zenith
Make it compatible with Dagger Zenith
- Loading branch information
Showing
13 changed files
with
345 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,3 @@ | ||
import Client, { connect } from "https://sdk.fluentci.io/v0.1.9/mod.ts"; | ||
import { upload } from "https://deno.land/x/codecov_pipeline/mod.ts"; | ||
|
||
function pipeline(src = ".") { | ||
connect(async (client: Client) => { | ||
await upload(client, src); | ||
}); | ||
} | ||
|
||
pipeline(); | ||
await upload(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"root": "", | ||
"name": "codecov", | ||
"sdkRuntime": "tsiry/dagger-sdk-deno" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,135 @@ | ||
/** | ||
* This file was generated by Nexus Schema | ||
* Do not make changes to this file directly | ||
*/ | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
declare global { | ||
interface NexusGen extends NexusGenTypes {} | ||
} | ||
|
||
export interface NexusGenInputs { | ||
} | ||
|
||
export interface NexusGenEnums { | ||
} | ||
|
||
export interface NexusGenScalars { | ||
String: string | ||
Int: number | ||
Float: number | ||
Boolean: boolean | ||
ID: string | ||
} | ||
|
||
export interface NexusGenObjects { | ||
Query: {}; | ||
} | ||
|
||
export interface NexusGenInterfaces { | ||
} | ||
|
||
export interface NexusGenUnions { | ||
} | ||
|
||
export type NexusGenRootTypes = NexusGenObjects | ||
|
||
export type NexusGenAllTypes = NexusGenRootTypes & NexusGenScalars | ||
|
||
export interface NexusGenFieldTypes { | ||
Query: { // field return type | ||
upload: string | null; // String | ||
} | ||
} | ||
|
||
export interface NexusGenFieldTypeNames { | ||
Query: { // field return type name | ||
upload: 'String' | ||
} | ||
} | ||
|
||
export interface NexusGenArgTypes { | ||
Query: { | ||
upload: { // args | ||
src: string; // String! | ||
token: string; // String! | ||
} | ||
} | ||
} | ||
|
||
export interface NexusGenAbstractTypeMembers { | ||
} | ||
|
||
export interface NexusGenTypeInterfaces { | ||
} | ||
|
||
export type NexusGenObjectNames = keyof NexusGenObjects; | ||
|
||
export type NexusGenInputNames = never; | ||
|
||
export type NexusGenEnumNames = never; | ||
|
||
export type NexusGenInterfaceNames = never; | ||
|
||
export type NexusGenScalarNames = keyof NexusGenScalars; | ||
|
||
export type NexusGenUnionNames = never; | ||
|
||
export type NexusGenObjectsUsingAbstractStrategyIsTypeOf = never; | ||
|
||
export type NexusGenAbstractsUsingStrategyResolveType = never; | ||
|
||
export type NexusGenFeaturesConfig = { | ||
abstractTypeStrategies: { | ||
isTypeOf: false | ||
resolveType: true | ||
__typename: false | ||
} | ||
} | ||
|
||
export interface NexusGenTypes { | ||
context: any; | ||
inputTypes: NexusGenInputs; | ||
rootTypes: NexusGenRootTypes; | ||
inputTypeShapes: NexusGenInputs & NexusGenEnums & NexusGenScalars; | ||
argTypes: NexusGenArgTypes; | ||
fieldTypes: NexusGenFieldTypes; | ||
fieldTypeNames: NexusGenFieldTypeNames; | ||
allTypes: NexusGenAllTypes; | ||
typeInterfaces: NexusGenTypeInterfaces; | ||
objectNames: NexusGenObjectNames; | ||
inputNames: NexusGenInputNames; | ||
enumNames: NexusGenEnumNames; | ||
interfaceNames: NexusGenInterfaceNames; | ||
scalarNames: NexusGenScalarNames; | ||
unionNames: NexusGenUnionNames; | ||
allInputTypes: NexusGenTypes['inputNames'] | NexusGenTypes['enumNames'] | NexusGenTypes['scalarNames']; | ||
allOutputTypes: NexusGenTypes['objectNames'] | NexusGenTypes['enumNames'] | NexusGenTypes['unionNames'] | NexusGenTypes['interfaceNames'] | NexusGenTypes['scalarNames']; | ||
allNamedTypes: NexusGenTypes['allInputTypes'] | NexusGenTypes['allOutputTypes'] | ||
abstractTypes: NexusGenTypes['interfaceNames'] | NexusGenTypes['unionNames']; | ||
abstractTypeMembers: NexusGenAbstractTypeMembers; | ||
objectsUsingAbstractStrategyIsTypeOf: NexusGenObjectsUsingAbstractStrategyIsTypeOf; | ||
abstractsUsingStrategyResolveType: NexusGenAbstractsUsingStrategyResolveType; | ||
features: NexusGenFeaturesConfig; | ||
} | ||
|
||
|
||
declare global { | ||
interface NexusGenPluginTypeConfig<TypeName extends string> { | ||
} | ||
interface NexusGenPluginInputTypeConfig<TypeName extends string> { | ||
} | ||
interface NexusGenPluginFieldConfig<TypeName extends string, FieldName extends string> { | ||
} | ||
interface NexusGenPluginInputFieldConfig<TypeName extends string, FieldName extends string> { | ||
} | ||
interface NexusGenPluginSchemaConfig { | ||
} | ||
interface NexusGenPluginArgConfig { | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
export * from "./src/dagger/index.ts"; | ||
export * as queries from "./src/dagger/queries.ts"; | ||
export { schema } from "./src/dagger/schema.ts"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
### This file was generated by Nexus Schema | ||
### Do not make changes to this file directly | ||
|
||
|
||
type Query { | ||
upload(src: String!, token: String!): String | ||
} |
Oops, something went wrong.