Compare commits

..

4 Commits

Author SHA1 Message Date
copilot-swe-agent[bot]
982d79fb53 Add copilot-setup-steps.yml for GitHub Copilot agent environment setup
Co-authored-by: nitnelave <796633+nitnelave@users.noreply.github.com>
2025-08-20 21:56:09 +00:00
copilot-swe-agent[bot]
4abe74dacc Add comprehensive GitHub Copilot instructions for LLDAP repository
Co-authored-by: nitnelave <796633+nitnelave@users.noreply.github.com>
2025-08-20 21:40:54 +00:00
copilot-swe-agent[bot]
0635a21eb8 Generate comprehensive Copilot instructions for LLDAP repository
Co-authored-by: nitnelave <796633+nitnelave@users.noreply.github.com>
2025-08-20 21:39:14 +00:00
copilot-swe-agent[bot]
840a115e0e Initial plan 2025-08-20 21:14:41 +00:00
5 changed files with 5 additions and 35 deletions

View File

@@ -1,4 +1,4 @@
FROM rust:1.85.0
FROM rust:1.85
ARG USERNAME=lldapdev
# We need to keep the user as 1001 to match the GitHub runner's UID.

View File

@@ -1,5 +1,5 @@
# Keep tracking base image
FROM rust:1.85.0-slim-bookworm
FROM rust:1.85-slim-bookworm
# Set needed env path
ENV PATH="/opt/armv7l-linux-musleabihf-cross/:/opt/armv7l-linux-musleabihf-cross/bin/:/opt/aarch64-linux-musl-cross/:/opt/aarch64-linux-musl-cross/bin/:/opt/x86_64-linux-musl-cross/:/opt/x86_64-linux-musl-cross/bin/:$PATH"

View File

@@ -8,7 +8,6 @@ on:
env:
CARGO_TERM_COLOR: always
RUST_VERSION: "1.85.0"
jobs:
pre_job:
@@ -35,11 +34,6 @@ jobs:
steps:
- name: Checkout sources
uses: actions/checkout@v5.0.0
- name: Install Rust ${{ env.RUST_VERSION }}
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ env.RUST_VERSION }}
override: true
- uses: Swatinem/rust-cache@v2
- name: Build
run: cargo build --verbose --workspace
@@ -60,13 +54,6 @@ jobs:
- name: Checkout sources
uses: actions/checkout@v5.0.0
- name: Install Rust ${{ env.RUST_VERSION }}
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ env.RUST_VERSION }}
override: true
components: clippy
- uses: Swatinem/rust-cache@v2
- name: Run cargo clippy
@@ -84,13 +71,6 @@ jobs:
- name: Checkout sources
uses: actions/checkout@v5.0.0
- name: Install Rust ${{ env.RUST_VERSION }}
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ env.RUST_VERSION }}
override: true
components: rustfmt
- uses: Swatinem/rust-cache@v2
- name: Run cargo fmt
@@ -110,17 +90,8 @@ jobs:
- name: Checkout sources
uses: actions/checkout@v5.0.0
- name: Install Rust ${{ env.RUST_VERSION }} and nightly
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ env.RUST_VERSION }}
override: true
components: llvm-tools-preview
- name: Install nightly toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
components: llvm-tools-preview
- name: Install Rust
run: rustup toolchain install nightly --component llvm-tools-preview && rustup component add llvm-tools-preview --toolchain stable-x86_64-unknown-linux-gnu
- uses: taiki-e/install-action@cargo-llvm-cov

View File

@@ -16,7 +16,6 @@ edition = "2024"
homepage = "https://github.com/lldap/lldap"
license = "GPL-3.0-only"
repository = "https://github.com/lldap/lldap"
rust-version = "1.85.0"
[profile.release]
lto = true

View File

@@ -1,5 +1,5 @@
# Build image
FROM rust:1.85.0-alpine3.21 AS chef
FROM rust:alpine3.21 AS chef
RUN set -x \
# Add user