Skip to content

Commit

Permalink
feat: migrate to gh-workflow-tailcall
Browse files Browse the repository at this point in the history
  • Loading branch information
mehul-m-prajapati committed Dec 7, 2024
1 parent b1d11cb commit 4db3ad1
Show file tree
Hide file tree
Showing 4 changed files with 77 additions and 54 deletions.
47 changes: 45 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout Code
uses: actions/checkout@v4
Expand All @@ -43,9 +45,50 @@ jobs:
components: clippy, rustfmt
- name: Cargo Test
run: cargo test --all-features --workspace
- name: Cargo Bench
run: cargo bench
- name: Cargo Fmt
run: cargo +nightly fmt --check
- name: Cargo Clippy
run: cargo +nightly clippy --all-features --workspace -- -D warnings
release:
needs:
- build
if: ${{ github.ref == 'refs/heads/main' && github.event_name == 'push' }}
name: Release
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
packages: write
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Release Plz
uses: release-plz/[email protected]
with:
command: release
release-pr:
needs:
- build
if: ${{ github.ref == 'refs/heads/main' && github.event_name == 'push' }}
name: Release PR
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
packages: write
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Release Plz
uses: release-plz/[email protected]
with:
command: release-pr
concurrency:
group: release-${{github.ref}}
cancel-in-progress: false
28 changes: 25 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jaq-std = { workspace = true }
jaq-json = { workspace = true }

[dev-dependencies]
gh-workflow = "0.4.1"
gh-workflow-tailcall = "0.1.3"
pest = "2.7.14"
pest_derive = {version = "2.7.14"}
criterion = "0.5.1"
Expand Down
54 changes: 6 additions & 48 deletions tests/ci.rs
Original file line number Diff line number Diff line change
@@ -1,52 +1,10 @@
use gh_workflow::toolchain::Toolchain;
use gh_workflow::*;
use gh_workflow_tailcall::*;

#[test]
fn generate() {
let flags = RustFlags::deny("warnings");
fn generate_ci_workflow() {
let workflow = Workflow::default()
.auto_release(true)
.name("Build and Test".into());

let build = Job::new("Build and Test")
.add_step(Step::checkout())
.add_step(
Toolchain::default()
.add_stable()
.add_nightly()
.add_clippy()
.add_fmt(),
)
.add_step(
Cargo::new("test")
.args("--all-features --workspace")
.name("Cargo Test"),
)
.add_step(Cargo::new("bench").name("Cargo Bench"))
.add_step(
Cargo::new("fmt")
.nightly()
.args("--check")
.name("Cargo Fmt"),
)
.add_step(
Cargo::new("clippy")
.nightly()
.args("--all-features --workspace -- -D warnings")
.name("Cargo Clippy"),
);

let event = Event::default()
.push(Push::default().add_branch("main"))
.pull_request(
PullRequest::default()
.add_type(PullRequestType::Opened)
.add_type(PullRequestType::Synchronize)
.add_type(PullRequestType::Reopened)
.add_branch("main"),
);

Workflow::new("Build and Test")
.add_env(flags)
.on(event)
.add_job("build", build)
.generate()
.unwrap();
workflow.generate().unwrap();
}

0 comments on commit 4db3ad1

Please sign in to comment.