-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add CITATION.cff file and validator CI job
- Loading branch information
1 parent
83c9b4d
commit b06b9b8
Showing
2 changed files
with
73 additions
and
0 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,40 @@ | ||
# SPDX-FileCopyrightText: 2022 Carles Fernandez-Prades <carles.fernandez@cttc.es> | ||
# SPDX-License-Identifier: MIT | ||
on: | ||
push: | ||
paths: | ||
- CITATION.cff | ||
workflow_dispatch: | ||
pull_request: | ||
paths: | ||
- CITATION.cff | ||
workflow_dispatch: | ||
|
||
name: CITATION.cff | ||
jobs: | ||
Validate-CITATION-cff: | ||
runs-on: ubuntu-latest | ||
name: Validate CITATION.cff | ||
env: | ||
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | ||
RSPM: "https://packagemanager.rstudio.com/cran/__linux__/focal/latest" | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
# This is needed for workflows running on | ||
# ubuntu-20.04 or later | ||
- name: Install V8 | ||
if: runner.os == 'Linux' | ||
run: | | ||
sudo apt-get install -y libv8-dev | ||
- name: Validate CITATION.cff | ||
uses: dieghernan/cff-validator@main | ||
|
||
# Upload artifact | ||
- uses: actions/upload-artifact@v2 | ||
if: failure() | ||
with: | ||
name: citation-cff-errors | ||
path: citation_cff_errors.md |
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,33 @@ | ||
# SPDX-License-Identifier: MIT | ||
# SPDX-FileCopyrightText: 2022 C. Fernandez-Prades carles.fernandez(at)cttc.es | ||
--- | ||
abstract: "Virtualized Geniux builder." | ||
authors: | ||
- affiliation: "Centre Tecnològic de Telecomunicacions de Catalunya (CTTC)" | ||
alias: carlesfernandez | ||
email: carles.fernandez@cttc.es | ||
family-names: "Fernández-Prades" | ||
given-names: Carles | ||
orcid: "https://orcid.org/0000-0002-9201-7007" | ||
cff-version: "1.2.0" | ||
date-released: "2021-08-24" | ||
doi: 10.5281/zenodo.5244379 | ||
identifiers: | ||
- description: "The concept DOI of the work. This is a DOI always pointing to the latest stable release." | ||
type: doi | ||
value: 10.5281/zenodo.4743667 | ||
keywords: | ||
- "Embedded systems" | ||
- "GNSS-SDR" | ||
- "software radio" | ||
- GNSS | ||
- SDR | ||
- yocto | ||
- docker | ||
- Dockerfile | ||
license: MIT | ||
message: "If you use this software, please cite it using the metadata from this file." | ||
repository-code: "https://github.com/carlesfernandez/yocto-geniux" | ||
title: "Yocto Geniux" | ||
type: software | ||
version: "2.0" |