mirror of
https://github.com/edera-dev/sprout.git
synced 2025-12-20 00:20:17 +00:00
Compare commits
13 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
398be12ac4
|
|||
|
7407150bff
|
|||
|
c23b11469d
|
|||
|
29529ddacd
|
|||
|
d2f47dcad6
|
|||
|
f3b7007432
|
|||
|
4f30d51bb2
|
|||
|
48e3644977
|
|||
| 345e1c800c | |||
| e5ae612398 | |||
|
|
f0427faab2 | ||
|
|
6278274288 | ||
|
4cd27a5010
|
5
.github/codeql/codeql-config.yaml
vendored
Normal file
5
.github/codeql/codeql-config.yaml
vendored
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
name: "codeql-config"
|
||||||
|
|
||||||
|
extractor-options:
|
||||||
|
rust:
|
||||||
|
cargo_target: x86_64-unknown-uefi
|
||||||
13
.github/dependabot.yaml
vendored
13
.github/dependabot.yaml
vendored
@@ -26,3 +26,16 @@ updates:
|
|||||||
cargo-dev-updates:
|
cargo-dev-updates:
|
||||||
dependency-type: development
|
dependency-type: development
|
||||||
applies-to: version-updates
|
applies-to: version-updates
|
||||||
|
- package-ecosystem: docker
|
||||||
|
directory: /
|
||||||
|
schedule:
|
||||||
|
interval: weekly
|
||||||
|
cooldown:
|
||||||
|
default-days: 7
|
||||||
|
groups:
|
||||||
|
docker-updates:
|
||||||
|
dependency-type: production
|
||||||
|
applies-to: version-updates
|
||||||
|
docker-dev-updates:
|
||||||
|
dependency-type: development
|
||||||
|
applies-to: version-updates
|
||||||
|
|||||||
15
.github/workflows/ci-code.yaml
vendored
15
.github/workflows/ci-code.yaml
vendored
@@ -26,10 +26,9 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
|
|
||||||
- name: 'install nightly rust toolchain with rustfmt'
|
- name: 'install rust toolchain with rustfmt'
|
||||||
run: |
|
run: |
|
||||||
rustup update --no-self-update nightly
|
cargo version
|
||||||
rustup default nightly
|
|
||||||
rustup component add rustfmt
|
rustup component add rustfmt
|
||||||
|
|
||||||
- name: 'cargo fmt'
|
- name: 'cargo fmt'
|
||||||
@@ -57,10 +56,9 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
|
|
||||||
- name: 'install nightly rust toolchain'
|
- name: 'install rust toolchain'
|
||||||
run: |
|
run: |
|
||||||
rustup update --no-self-update nightly
|
cargo version
|
||||||
rustup default nightly
|
|
||||||
|
|
||||||
- name: cargo build
|
- name: cargo build
|
||||||
run: cargo build --target "${TARGET_ARCH}-unknown-uefi"
|
run: cargo build --target "${TARGET_ARCH}-unknown-uefi"
|
||||||
@@ -87,10 +85,9 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
|
|
||||||
- name: 'install nightly rust toolchain with clippy'
|
- name: 'install rust toolchain with clippy'
|
||||||
run: |
|
run: |
|
||||||
rustup update --no-self-update nightly
|
cargo version
|
||||||
rustup default stable
|
|
||||||
rustup component add clippy
|
rustup component add clippy
|
||||||
|
|
||||||
- name: cargo clippy
|
- name: cargo clippy
|
||||||
|
|||||||
53
.github/workflows/codeql.yaml
vendored
Normal file
53
.github/workflows/codeql.yaml
vendored
Normal file
@@ -0,0 +1,53 @@
|
|||||||
|
name: codeql
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ "main" ]
|
||||||
|
pull_request:
|
||||||
|
branches: [ "main" ]
|
||||||
|
schedule:
|
||||||
|
- cron: '33 16 * * 0'
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: read # Needed to checkout the repository.
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
analyze:
|
||||||
|
name: analyze (${{ matrix.language }})
|
||||||
|
runs-on: 'ubuntu-latest'
|
||||||
|
permissions:
|
||||||
|
security-events: write # Needed to upload results.
|
||||||
|
packages: read # Needed to fetch internal or private CodeQL packs.
|
||||||
|
actions: read # Needed to read workflows.
|
||||||
|
contents: read # Needed to checkout the repository.
|
||||||
|
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
include:
|
||||||
|
- language: actions
|
||||||
|
build-mode: none
|
||||||
|
- language: rust
|
||||||
|
build-mode: none
|
||||||
|
steps:
|
||||||
|
- name: harden runner
|
||||||
|
uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1
|
||||||
|
with:
|
||||||
|
egress-policy: audit
|
||||||
|
|
||||||
|
- name: checkout
|
||||||
|
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
|
||||||
|
with:
|
||||||
|
persist-credentials: false
|
||||||
|
|
||||||
|
- name: initialize codeql
|
||||||
|
uses: github/codeql-action/init@16140ae1a102900babc80a33c44059580f687047 #v4
|
||||||
|
with:
|
||||||
|
languages: ${{ matrix.language }}
|
||||||
|
build-mode: ${{ matrix.build-mode }}
|
||||||
|
config-file: ./.github/codeql/codeql-config.yaml
|
||||||
|
|
||||||
|
- name: perform codeql analysis
|
||||||
|
uses: github/codeql-action/analyze@16140ae1a102900babc80a33c44059580f687047 #v4
|
||||||
|
with:
|
||||||
|
category: "/language:${{matrix.language}}"
|
||||||
26
.github/workflows/publish.yaml
vendored
26
.github/workflows/publish.yaml
vendored
@@ -1,9 +1,12 @@
|
|||||||
name: publish
|
name: publish
|
||||||
|
|
||||||
on:
|
on:
|
||||||
release:
|
workflow_dispatch:
|
||||||
types:
|
inputs:
|
||||||
- created
|
release-tag:
|
||||||
|
description: 'Release Tag'
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
@@ -39,10 +42,9 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
|
|
||||||
- name: 'install nightly rust toolchain'
|
- name: 'install rust toolchain'
|
||||||
run: |
|
run: |
|
||||||
rustup update --no-self-update nightly
|
cargo version
|
||||||
rustup default nightly
|
|
||||||
|
|
||||||
- name: 'assemble artifacts'
|
- name: 'assemble artifacts'
|
||||||
run: ./hack/assemble.sh
|
run: ./hack/assemble.sh
|
||||||
@@ -65,10 +67,18 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
app-id: "${{ secrets.EDERA_CULTIVATION_APP_ID }}"
|
app-id: "${{ secrets.EDERA_CULTIVATION_APP_ID }}"
|
||||||
private-key: "${{ secrets.EDERA_CULTIVATION_APP_PRIVATE_KEY }}"
|
private-key: "${{ secrets.EDERA_CULTIVATION_APP_PRIVATE_KEY }}"
|
||||||
|
if: ${{ github.event.inputs.release-tag != '' }}
|
||||||
|
|
||||||
- name: 'upload release artifacts'
|
- name: 'upload release artifacts'
|
||||||
run: ./hack/ci/upload-release-assets.sh
|
run: ./hack/ci/upload-release-assets.sh
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: "${{ steps.generate-token.outputs.token }}"
|
GITHUB_TOKEN: "${{ steps.generate-token.outputs.token }}"
|
||||||
RELEASE_TAG: "${{ github.event.release.tag_name }}"
|
RELEASE_TAG: "${{ github.event.inputs.release-tag }}"
|
||||||
if: ${{ github.event_name == 'release' }}
|
if: ${{ github.event.inputs.release-tag != '' }}
|
||||||
|
|
||||||
|
- name: 'mark release as published'
|
||||||
|
run: gh release edit "${RELEASE_TAG}" --draft=false --verify-tag
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: "${{ steps.generate-token.outputs.token }}"
|
||||||
|
RELEASE_TAG: "${{ github.event.inputs.release-tag }}"
|
||||||
|
if: ${{ github.event.inputs.release-tag != '' }}
|
||||||
|
|||||||
20
Cargo.lock
generated
20
Cargo.lock
generated
@@ -252,9 +252,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "serde_spanned"
|
name = "serde_spanned"
|
||||||
version = "1.0.2"
|
version = "1.0.3"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "5417783452c2be558477e104686f7de5dae53dba813c28435e0e70f82d9b04ee"
|
checksum = "e24345aa0fe688594e73770a5f6d1b216508b4f93484c0026d521acd30134392"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"serde_core",
|
"serde_core",
|
||||||
]
|
]
|
||||||
@@ -277,9 +277,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "toml"
|
name = "toml"
|
||||||
version = "0.9.7"
|
version = "0.9.8"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "00e5e5d9bf2475ac9d4f0d9edab68cc573dc2fd644b0dba36b0c30a92dd9eaa0"
|
checksum = "f0dc8b1fb61449e27716ec0e1bdf0f6b8f3e8f6b05391e8497b8b6d7804ea6d8"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"indexmap",
|
"indexmap",
|
||||||
"serde_core",
|
"serde_core",
|
||||||
@@ -292,27 +292,27 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "toml_datetime"
|
name = "toml_datetime"
|
||||||
version = "0.7.2"
|
version = "0.7.3"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "32f1085dec27c2b6632b04c80b3bb1b4300d6495d1e129693bdda7d91e72eec1"
|
checksum = "f2cdb639ebbc97961c51720f858597f7f24c4fc295327923af55b74c3c724533"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"serde_core",
|
"serde_core",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "toml_parser"
|
name = "toml_parser"
|
||||||
version = "1.0.3"
|
version = "1.0.4"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "4cf893c33be71572e0e9aa6dd15e6677937abd686b066eac3f8cd3531688a627"
|
checksum = "c0cbe268d35bdb4bb5a56a2de88d0ad0eb70af5384a99d648cd4b3d04039800e"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"winnow",
|
"winnow",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "toml_writer"
|
name = "toml_writer"
|
||||||
version = "1.0.3"
|
version = "1.0.4"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "d163a63c116ce562a22cda521fcc4d79152e7aba014456fb5eb442f6d6a10109"
|
checksum = "df8b2b54733674ad286d16267dcfc7a71ed5c776e4ac7aa3c3e2561f7c637bf2"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ucs2"
|
name = "ucs2"
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ edition = "2024"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = "1.0.100"
|
anyhow = "1.0.100"
|
||||||
toml = "0.9.7"
|
toml = "0.9.8"
|
||||||
log = "0.4.28"
|
log = "0.4.28"
|
||||||
|
|
||||||
[dependencies.image]
|
[dependencies.image]
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
ARG RUST_PROFILE=release
|
ARG RUST_PROFILE=release
|
||||||
ARG RUST_TARGET_SUBDIR=release
|
ARG RUST_TARGET_SUBDIR=release
|
||||||
|
|
||||||
FROM --platform=$BUILDPLATFORM rustlang/rust:nightly-alpine@sha256:b8107fa66d3e5ad7f729d3347c7feedbd3f4b60b01006edce39eb6b994ff00bd AS build
|
FROM --platform=$BUILDPLATFORM rustlang/rust:nightly-alpine@sha256:141e9a7f13f77237dd4d462364c3a1b21cb8a6791d8924c409573e77b788af5e AS build
|
||||||
RUN apk --no-cache add musl-dev busybox-static
|
RUN apk --no-cache add musl-dev busybox-static
|
||||||
ARG RUST_PROFILE
|
ARG RUST_PROFILE
|
||||||
RUN adduser -S -s /bin/sh build
|
RUN adduser -S -s /bin/sh build
|
||||||
|
|||||||
Reference in New Issue
Block a user