-
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.
- Loading branch information
Showing
6 changed files
with
238 additions
and
226 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 |
---|---|---|
@@ -0,0 +1,145 @@ | ||
# Original file from https://github.com/orhun/git-cliff | ||
name: Continuous Integration | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- master | ||
- dev | ||
schedule: | ||
- cron: "0 0 * * 0" | ||
|
||
jobs: | ||
check: | ||
name: Check | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Install toolchain | ||
uses: dtolnay/rust-toolchain@stable | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Check | ||
uses: actions-rs/cargo@v1 | ||
with: | ||
command: check | ||
args: --locked --verbose | ||
- name: Check without default features | ||
uses: actions-rs/cargo@v1 | ||
with: | ||
command: check | ||
args: --locked --no-default-features --verbose | ||
|
||
typos: | ||
name: Typos | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Check typos | ||
uses: crate-ci/typos@master | ||
|
||
test: | ||
name: Test suite | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Install toolchain | ||
uses: dtolnay/rust-toolchain@nightly | ||
- name: Checkout | ||
if: github.event_name != 'pull_request' | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Checkout | ||
if: github.event_name == 'pull_request' | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ github.event.pull_request.head.sha }} | ||
fetch-depth: 0 | ||
- name: Setup cargo-tarpaulin | ||
uses: taiki-e/install-action@cargo-tarpaulin | ||
- name: Run tests | ||
run: cargo tarpaulin --out xml --verbose | ||
- name: Upload reports to codecov | ||
uses: codecov/codecov-action@v3 | ||
with: | ||
name: code-coverage-report | ||
file: cobertura.xml | ||
flags: unit-tests | ||
fail_ci_if_error: true | ||
verbose: true | ||
|
||
clippy: | ||
name: Lints | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Install toolchain | ||
uses: dtolnay/rust-toolchain@nightly | ||
with: | ||
components: clippy | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Check the lints | ||
uses: actions-rs/cargo@v1 | ||
with: | ||
command: clippy | ||
args: --tests --verbose -- -D warnings | ||
|
||
rustfmt: | ||
name: Formatting | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Install toolchain | ||
uses: dtolnay/rust-toolchain@nightly | ||
with: | ||
components: rustfmt | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Check the formatting | ||
uses: actions-rs/cargo@v1 | ||
with: | ||
command: fmt | ||
args: --all -- --check --verbose | ||
|
||
lychee: | ||
name: Links | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Check the links | ||
uses: lycheeverse/lychee-action@v1 | ||
with: | ||
args: -v --max-concurrency 1 *.md | ||
fail: true | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
audit: | ||
name: Audit check | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Run cargo-audit | ||
uses: actions-rs/audit-check@v1 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
msrv: | ||
name: Check Rust version | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Run cargo-msrv | ||
shell: bash | ||
run: | | ||
curl -s 'https://api.github.com/repos/foresterre/cargo-msrv/releases' | \ | ||
jq -r "[.[] | select(.prerelease == false)][0].assets[] | \ | ||
select(.name | ascii_downcase | test(\"linux.*x86_64|x86_64.*linux\")).browser_download_url" | \ | ||
wget -qi - | ||
tar -xvf cargo-msrv*.tar* -C ~/.cargo/bin/ cargo-msrv | ||
for package in $(cargo metadata --format-version 1 | jq -r ".workspace_members[]" | awk '{print $1}'); do | ||
printf "Checking MSRV for $package..." | ||
cargo msrv --output-format json --path "$package" verify | tail -n 1 | jq --exit-status '.success' | ||
done |
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,93 @@ | ||
# Original file from https://github.com/orhun/git-cliff | ||
name: Docker Automated Builds | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
tags: | ||
- "v*.*.*" | ||
pull_request: | ||
branches: | ||
- master | ||
schedule: | ||
- cron: "0 0 * * 0" | ||
|
||
jobs: | ||
docker: | ||
name: Docker Build and Push | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Docker meta | ||
id: meta | ||
uses: docker/metadata-action@v5 | ||
with: | ||
images: | | ||
stefa168/growatt_server | ||
ghcr.io/${{ github.repository_owner }}/growatt_server/growatt_server | ||
tags: | | ||
type=schedule | ||
type=ref,event=branch | ||
type=ref,event=pr | ||
type=sha | ||
type=raw,value=latest | ||
type=semver,pattern={{version}} | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v3 | ||
with: | ||
platforms: arm64 | ||
|
||
- name: Set up Docker Buildx | ||
id: buildx | ||
uses: docker/setup-buildx-action@v3 | ||
|
||
- name: Cache Docker layers | ||
uses: actions/cache@v3 | ||
with: | ||
path: /tmp/.buildx-cache | ||
key: ${{ runner.os }}-buildx-${{ github.sha }} | ||
restore-keys: | | ||
${{ runner.os }}-buildx- | ||
- name: Login to Docker Hub | ||
if: github.event_name != 'pull_request' | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{ secrets.DOCKER_HUB_USERNAME }} | ||
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} | ||
|
||
- name: Login to GHCR | ||
if: github.event_name != 'pull_request' | ||
uses: docker/login-action@v3 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.repository_owner }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Build and push | ||
id: docker_build | ||
uses: docker/build-push-action@v5 | ||
with: | ||
context: ./ | ||
file: ./Dockerfile | ||
platforms: linux/amd64,linux/arm64 | ||
builder: ${{ steps.buildx.outputs.name }} | ||
push: ${{ github.event_name != 'pull_request' }} | ||
tags: ${{ steps.meta.outputs.tags }} | ||
sbom: true | ||
provenance: true | ||
labels: ${{ steps.meta.outputs.labels }} | ||
cache-from: type=local,src=/tmp/.buildx-cache | ||
cache-to: type=local,dest=/tmp/.buildx-cache | ||
|
||
- name: Scan the image | ||
uses: anchore/sbom-action@v0 | ||
with: | ||
image: ghcr.io/${{ github.repository_owner }}/git-cliff/git-cliff | ||
|
||
- name: Image digest | ||
run: echo ${{ steps.docker_build.outputs.digest }} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.