-
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 #1 from fluent-ci-templates/use-deps
Use deps
- Loading branch information
Showing
9 changed files
with
74 additions
and
64 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,8 +48,8 @@ dagger run fluentci . | |
You can also use this pipeline programmatically: | ||
|
||
```ts | ||
import Client, { connect } from "https://sdk.fluentci.io/v0.1.7/mod.ts"; | ||
import { preview, up } from "https://pkg.fluentci.io/[email protected].0/mod.ts"; | ||
import Client, { connect } from "https://sdk.fluentci.io/v0.1.9/mod.ts"; | ||
import { preview, up } from "https://pkg.fluentci.io/[email protected].1/mod.ts"; | ||
|
||
function pipeline(src = ".") { | ||
connect(async (client: Client) => { | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
export { assertEquals } from "https://deno.land/[email protected]/testing/asserts.ts"; | ||
import Client from "https://sdk.fluentci.io/v0.1.9/mod.ts"; | ||
export default Client; | ||
|
||
export { | ||
connect, | ||
uploadContext, | ||
Container, | ||
} from "https://sdk.fluentci.io/v0.1.9/mod.ts"; | ||
export { brightGreen } from "https://deno.land/[email protected]/fmt/colors.ts"; | ||
export { withDevbox } from "https://nix.fluentci.io/v0.5.1/src/dagger/steps.ts"; | ||
export { stringifyTree } from "https://esm.sh/[email protected]"; | ||
|
||
export * as FluentGitlabCI from "https://deno.land/x/[email protected]/mod.ts"; | ||
export * as FluentGithubActions from "https://deno.land/x/[email protected]/mod.ts"; | ||
export * as FluentCircleCI from "https://deno.land/x/[email protected]/mod.ts"; | ||
export * as FluentAzurePipelines from "https://deno.land/x/[email protected]/mod.ts"; | ||
export * as FluentAWSCodePipeline from "https://deno.land/x/[email protected]/mod.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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"imports": { | ||
"@fluentci.io/dagger": "https://sdk.fluentci.io/v0.1.7/mod.ts", | ||
"@fluentci.io/dagger": "https://sdk.fluentci.io/v0.1.9/mod.ts", | ||
"@dagger.io/dagger": "https://esm.sh/v128/*@dagger.io/[email protected]", | ||
"graphql-tag": "https://esm.sh/v128/[email protected]", | ||
"graphql-request": "https://esm.sh/v128/[email protected]", | ||
|
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
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,4 +1,4 @@ | ||
import { assertEquals } from "https://deno.land/[email protected]/testing/asserts.ts"; | ||
import { assertEquals } from "../../deps.ts"; | ||
import { filterObjectByPrefix } from "./lib.ts"; | ||
|
||
Deno.test(function filterObjectByPrefixTest() { | ||
|
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,6 +1,6 @@ | ||
import { brightGreen } from "https://deno.land/[email protected]/fmt/colors.ts"; | ||
import { brightGreen } from "../../deps.ts"; | ||
import { runnableJobs, jobDescriptions, Job } from "./jobs.ts"; | ||
import { stringifyTree } from "https://esm.sh/[email protected]"; | ||
import { stringifyTree } from "../../deps.ts"; | ||
|
||
const tree = { | ||
name: brightGreen("pulumi_pipeline"), | ||
|
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