change pipeline to also run on forgejo, add note about move to README
This commit is contained in:
parent
c5cd8648ba
commit
2c6c854969
40
.github/workflows/rust.yml
vendored
40
.github/workflows/rust.yml
vendored
|
@ -9,27 +9,37 @@ on:
|
||||||
env:
|
env:
|
||||||
CARGO_TERM_COLOR: always
|
CARGO_TERM_COLOR: always
|
||||||
|
|
||||||
|
# Make sure CI fails on all warnings, including Clippy lints
|
||||||
|
RUSTFLAGS: "-Dwarnings"
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: install lzma
|
- name: Update repos
|
||||||
run: sudo apt-get update && sudo apt-get install -y liblzma-dev
|
run: sudo apt-get update -qq
|
||||||
|
- name: Install rust toolchain
|
||||||
|
run: sudo apt-get install -qy cargo rust-clippy
|
||||||
|
- name: install lzma
|
||||||
|
run: sudo apt-get update && sudo apt-get install -y liblzma-dev
|
||||||
|
|
||||||
- name: build default features
|
- name: Run Clippy
|
||||||
run: cargo build --all --verbose
|
run: cargo clippy --all-targets --all-features
|
||||||
- name: build default features -- examples
|
|
||||||
run: cargo build --examples --verbose
|
- name: build default features
|
||||||
- name: test default features
|
run: cargo build --all --verbose
|
||||||
run: cargo test --all --verbose
|
- name: build default features -- examples
|
||||||
|
run: cargo build --examples --verbose
|
||||||
|
- name: test default features
|
||||||
|
run: cargo test --all --verbose
|
||||||
|
|
||||||
- name: build all features
|
- name: build all features
|
||||||
run: cargo build --all-features --verbose
|
run: cargo build --all-features --verbose
|
||||||
- name: build all features -- examples
|
- name: build all features -- examples
|
||||||
run: cargo build --all-features --examples --verbose
|
run: cargo build --all-features --examples --verbose
|
||||||
- name: test all features
|
- name: test all features
|
||||||
run: cargo test --all --all-features --verbose
|
run: cargo test --all --all-features --verbose
|
||||||
|
|
12
README.md
12
README.md
|
@ -10,13 +10,15 @@ Display" or "Airport Display".
|
||||||
This repository contains a library for parsing, encoding and sending packets to this display via UDP in multiple
|
This repository contains a library for parsing, encoding and sending packets to this display via UDP in multiple
|
||||||
programming languages.
|
programming languages.
|
||||||
|
|
||||||
|
This repository will move to [git.berlin.ccc.de/servicepoint/servicepoint-simulator](https://git.berlin.ccc.de/servicepoint/servicepoint-simulator) soon.
|
||||||
|
|
||||||
Take a look at the contained crates for language specific information:
|
Take a look at the contained crates for language specific information:
|
||||||
|
|
||||||
| Crate | Languages | Readme |
|
| Crate | Languages | Readme |
|
||||||
|-----------------------------|-----------------------------------|-------------------------------------------------------------------------|
|
|-----------------------------|-----------------------------------|-----------------------------------------------------------------------------|
|
||||||
| servicepoint | Rust | [servicepoint](crates/servicepoint/README.md) |
|
| servicepoint | Rust | [servicepoint](crates/servicepoint/README.md) |
|
||||||
| servicepoint_binding_c | C / C++ | [servicepoint_binding_c](crates/servicepoint_binding_c/README.md) |
|
| servicepoint_binding_c | C / C++ | [servicepoint_binding_c](crates/servicepoint_binding_c/README.md) |
|
||||||
| servicepoint_binding_uniffi | C# / Python / Go / Kotlin / Swift | [servicepoint_binding_cs](crates/servicepoint_binding_uniffi/README.md) |
|
| servicepoint_binding_uniffi | C# / Python / Go / Kotlin / Swift | [servicepoint_binding_uniffi](crates/servicepoint_binding_uniffi/README.md) |
|
||||||
|
|
||||||
## Projects using the library
|
## Projects using the library
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue