From ff8079bbcb5a23de4fdfa6538ada6eef0bbd09f5 Mon Sep 17 00:00:00 2001 From: Dennis Klein Date: Mon, 11 Sep 2023 19:09:44 +0200 Subject: [PATCH] ci: Generate `codemeta.json` --- .github/workflows/codemeta.yaml | 46 ++++++++++++++++++++++++ .github/workflows/codemeta_validate.yaml | 21 ----------- 2 files changed, 46 insertions(+), 21 deletions(-) create mode 100644 .github/workflows/codemeta.yaml delete mode 100644 .github/workflows/codemeta_validate.yaml diff --git a/.github/workflows/codemeta.yaml b/.github/workflows/codemeta.yaml new file mode 100644 index 000000000..62179671f --- /dev/null +++ b/.github/workflows/codemeta.yaml @@ -0,0 +1,46 @@ +name: codemeta + +on: + push: + paths: + - codemeta.json + - .github/workflows/codemeta.yaml + tags: + - 'v*' + pull_request: + paths: + - codemeta.json + - .github/workflows/codemeta.yaml + +jobs: + generate: + runs-on: ubuntu-latest + container: + image: ghcr.io/fairrootgroup/fairmq-dev/fedora-38:latest + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 150 + fetch-tags: true + - run: "git config --system --add safe.directory $GITHUB_WORKSPACE" + - name: configure + run: "cmake -G Ninja -S $GITHUB_WORKSPACE -B build" + - name: generate codemeta.json + run: cmake --build build --target codemeta + - name: print result + run: cat build/codemeta.json + - uses: actions/upload-artifact@v3 + with: + name: codemeta.json + path: build/codemeta.json + validate: + needs: generate + runs-on: ubuntu-latest + container: + image: gitlab-registry.in2p3.fr/escape2020/wp3/eossr:v1.0 + steps: + - uses: actions/download-artifact@v3 + with: + name: codemeta.json + - name: validate codemeta + run: eossr-metadata-validator codemeta.json diff --git a/.github/workflows/codemeta_validate.yaml b/.github/workflows/codemeta_validate.yaml deleted file mode 100644 index 46a7b0c00..000000000 --- a/.github/workflows/codemeta_validate.yaml +++ /dev/null @@ -1,21 +0,0 @@ -name: validate codemeta - -on: - push: - paths: - - codemeta.json - - .github/workflows/codemeta_validate.yaml - pull_request: - paths: - - codemeta.json - - .github/workflows/codemeta_validate.yaml - -jobs: - build: - runs-on: ubuntu-latest - container: - image: gitlab-registry.in2p3.fr/escape2020/wp3/eossr:v1.0 - steps: - - uses: actions/checkout@v3 - - name: validate codemeta - run: eossr-metadata-validator codemeta.json