-
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 #4 from fluent-ci-templates/zenith
Make it compatible with Dagger Zenith
- Loading branch information
Showing
550 changed files
with
1,044 additions
and
17,242 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
22 changes: 11 additions & 11 deletions
22
...i/example/.fluentci/fixtures/workflow.yml → .github/workflows/zenith.yml
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,24 +1,24 @@ | ||
# Do not edit this file directly. It is generated by https://deno.land/x/fluent_github_actions | ||
|
||
name: build | ||
name: Zenith Example | ||
on: | ||
push: | ||
branches: | ||
- main | ||
- zenith | ||
|
||
jobs: | ||
build: | ||
tests: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: denoland/setup-deno@v1 | ||
with: | ||
deno-version: v1.37 | ||
- name: Setup Fluent CI CLI | ||
run: deno install -A -r https://cli.fluentci.io -n fluentci | ||
- name: Setup Dagger | ||
- name: Setup Dagger Zenith | ||
run: | | ||
curl -L https://dl.dagger.io/dagger/install.sh | DAGGER_VERSION=0.8.1 sh | ||
curl -L https://dl.dagger.io/dagger/install.sh | DAGGER_VERSION=0.8.8 sh | ||
sudo mv bin/dagger /usr/local/bin | ||
dagger version | ||
- name: Run Dagger Pipelines | ||
run: fluentci run gradle_pipeline | ||
run: | | ||
dagger query --doc check.gql | ||
dagger query --doc test.gql | ||
dagger query --doc build.gql | ||
working-directory: example |
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,16 +1,9 @@ | ||
import Client, { connect } from "https://sdk.fluentci.io/v0.1.9/mod.ts"; | ||
import { | ||
check, | ||
test, | ||
build, | ||
} from "https://pkg.fluentci.io/gradle_pipeline@v0.3.1/mod.ts"; | ||
} from "https://pkg.fluentci.io/gradle_pipeline@v0.4.0/mod.ts"; | ||
|
||
function pipeline(src = ".") { | ||
connect(async (client: Client) => { | ||
await check(client, src); | ||
await test(client, src); | ||
await build(client, src); | ||
}); | ||
} | ||
|
||
pipeline(); | ||
await check(); | ||
await test(); | ||
await build(); |
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": "gradle", | ||
"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
22 changes: 11 additions & 11 deletions
22
...i/example/.fluentci/fixtures/workflow.yml → ...le/.fluentci/.github/workflows/zenith.yml
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,24 +1,24 @@ | ||
# Do not edit this file directly. It is generated by https://deno.land/x/fluent_github_actions | ||
|
||
name: build | ||
name: Zenith Example | ||
on: | ||
push: | ||
branches: | ||
- main | ||
- zenith | ||
|
||
jobs: | ||
build: | ||
tests: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: denoland/setup-deno@v1 | ||
with: | ||
deno-version: v1.37 | ||
- name: Setup Fluent CI CLI | ||
run: deno install -A -r https://cli.fluentci.io -n fluentci | ||
- name: Setup Dagger | ||
- name: Setup Dagger Zenith | ||
run: | | ||
curl -L https://dl.dagger.io/dagger/install.sh | DAGGER_VERSION=0.8.1 sh | ||
curl -L https://dl.dagger.io/dagger/install.sh | DAGGER_VERSION=0.8.8 sh | ||
sudo mv bin/dagger /usr/local/bin | ||
dagger version | ||
- name: Run Dagger Pipelines | ||
run: fluentci run gradle_pipeline | ||
run: | | ||
dagger query --doc check.gql | ||
dagger query --doc test.gql | ||
dagger query --doc build.gql | ||
working-directory: example |
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,5 @@ | ||
{ | ||
"root": "", | ||
"name": "gradle", | ||
"sdkRuntime": "tsiry/dagger-sdk-deno" | ||
} |
Oops, something went wrong.