9 Commits

Author SHA1 Message Date
9e8dbb7c6d hopefully the last small fix
All checks were successful
Rust/va108xx-rs/pipeline/head This commit looks good
2021-12-03 15:07:11 +01:00
1a707aa861 small README fix 2021-12-03 15:06:49 +01:00
02725c9aa2 v0.2.1: updated homepage and repostory
All checks were successful
Rust/va108xx-rs/pipeline/head This commit looks good
2021-12-03 15:04:20 +01:00
b09e82a563 Merge pull request 'v0.2.0: Relicensed as Apache-2.0' (#3) from mueller/bump-to-v0.2.0 into main
All checks were successful
Rust/va108xx-rs/pipeline/head This commit looks good
Reviewed-on: rust/va108xx-rs#3
2021-12-03 14:41:59 +01:00
2c86b1420e v0.2.0: Relicensed and republished
All checks were successful
Rust/va108xx-rs/pipeline/head This commit looks good
- Now hosted on EGit
2021-12-03 14:28:37 +01:00
74a4c44f71 Merge pull request 'NOTICE Draft' (#2) from mohr-NOTICE into main
All checks were successful
Rust/va108xx-rs/pipeline/head This commit looks good
Reviewed-on: rust/va108xx-rs#2
2021-11-29 09:54:16 +01:00
b7ba49258c NOTICE Draft
All checks were successful
Rust/va108xx-rs/pipeline/head This commit looks good
2021-11-26 18:00:10 +01:00
acadf7cdc9 Merge pull request 'EGit integration' (#1) from mueller/egit-integration into main
All checks were successful
Rust/va108xx-rs/pipeline/head This commit looks good
Reviewed-on: rust/va108xx-rs#1
2021-11-26 14:56:15 +01:00
952ec3738b EGit integration
All checks were successful
Rust/va108xx-rs/pipeline/head This commit looks good
- Added automation files for CI/CD
- Relicense as Apache 2.0
2021-11-23 10:34:25 +01:00
7 changed files with 64 additions and 31 deletions

View File

@ -8,6 +8,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
## [unreleased]
## [v0.2.0]
- Authorative repository was transferred to https://egit.irs.uni-stuttgart.de/rust/va108xx-rs but
there still will be a GitHub mirror. Project relicensed as Apache-2.0 only
## [v0.1.3]
### Added

View File

@ -1,12 +1,12 @@
[package]
name = "va108xx"
version = "0.1.3"
authors = ["Robin Mueller <robin.mueller.m@gmail.com>"]
version = "0.2.2"
authors = ["Robin Mueller <muellerr@irs.uni-stuttgart.de>"]
edition = "2021"
description = "PAC for the Vorago VA108xx family of microcontrollers"
homepage = "https://github.com/robamu-org/va108xx-rs"
repository = "https://github.com/robamu-org/va108xx-rs"
license = "MIT OR Apache-2.0"
homepage = "https://egit.irs.uni-stuttgart.de/rust/va108xx-rs"
repository = "https://egit.irs.uni-stuttgart.de/rust/va108xx-rs"
license = "Apache-2.0"
keywords = ["no-std", "arm", "cortex-m", "vorago", "va108xx"]
categories = ["embedded", "no-std", "hardware-support"]

View File

@ -1,25 +0,0 @@
Copyright (c) 2021 Robin Mueller
Permission is hereby granted, free of charge, to any
person obtaining a copy of this software and associated
documentation files (the "Software"), to deal in the
Software without restriction, including without
limitation the rights to use, copy, modify, merge,
publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software
is furnished to do so, subject to the following
conditions:
The above copyright notice and this permission notice
shall be included in all copies or substantial portions
of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.

3
NOTICE Normal file
View File

@ -0,0 +1,3 @@
Peripheral access crate for the Vorago VA108xx family microcontrollers
This software contains code developed at the University of Stuttgart.

View File

@ -15,7 +15,7 @@ To use this crate, add this to your `Cargo.toml`
```toml
[dependencies.va108xx]
version = "0.1"
version = "<Most Recent Version>"
features = ["rt"]
```

11
automation/Dockerfile Normal file
View File

@ -0,0 +1,11 @@
# Run the following commands from root directory to build and run locally
# docker build -f automation/Dockerfile -t <NAME> .
# docker run -it <NAME>
FROM rust:latest
RUN apt-get update
RUN apt-get --yes upgrade
# tzdata is a dependency, won't install otherwise
ARG DEBIAN_FRONTEND=noninteractive
RUN rustup target add thumbv6m-none-eabi && \
rustup component add rustfmt clippy

39
automation/Jenkinsfile vendored Normal file
View File

@ -0,0 +1,39 @@
pipeline {
agent any
stages {
stage('Clippy') {
agent {
dockerfile {
dir 'automation'
reuseNode true
}
}
steps {
sh 'cargo clippy'
}
}
stage('Rustfmt') {
agent {
dockerfile {
dir 'automation'
reuseNode true
}
}
steps {
sh 'cargo fmt'
}
}
stage('Build') {
agent {
dockerfile {
dir 'automation'
reuseNode true
}
}
steps {
sh 'cargo build'
}
}
}
}