Skip to content

Added Incident angle in data model #197

Added Incident angle in data model

Added Incident angle in data model #197

name: linux-eic-shell
on:
push:
branches:
- main
tags:
- '*'
pull_request:
schedule:
- cron: '41 4 * * 0'
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: cvmfs-contrib/github-action-cvmfs@v3
- uses: eic/run-cvmfs-osg-eic-shell@main
with:
platform-release: "jug_xl:nightly"
run: |
PREFIX=${PWD}/install
cmake -B build -S . -DCMAKE_INSTALL_PREFIX=${PREFIX}
cmake --build build -- install
- uses: actions/upload-artifact@v3
with:
name: build-eic-shell
path: build/
if-no-files-found: error
- uses: actions/upload-artifact@v3
with:
name: install-eic-shell
path: install/
if-no-files-found: error
build-docs:
runs-on: ubuntu-latest
needs: build-test
container:
image: alpine:latest
volumes:
- /home/runner/work/_temp:/home/runner/work/_temp
# FIXME hard-coded: see https://github.com/actions/upload-pages-artifact/pull/14
steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
with:
name: build-eic-shell
path: build/
- run: |
apk add doxygen graphviz
doxygen build/Doxyfile
- uses: actions/upload-artifact@v3
with:
name: docs-eic-shell
path: build/docs/html/
if-no-files-found: error
- run: |
apk add tar bash
# FIXME bash not really required: see https://github.com/actions/upload-pages-artifact/pull/14
- uses: actions/upload-pages-artifact@v1
if: github.ref == 'refs/heads/main'
with:
path: build/docs/html/
retention-days: 7
deploy-docs:
needs: build-docs
if: github.ref == 'refs/heads/main'
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1
trigger-juggler:
runs-on: ubuntu-latest
needs: build-test
if: github.event_name == 'pull_request'
steps:
- uses: eic/trigger-gitlab-ci@v2
id: trigger
with:
url: https://eicweb.phy.anl.gov
project_id: 369
token: ${{ secrets.EICWEB_JUGGLER_TRIGGER }}
ref_name: main
variables: |
JUGGLER_EICD_REPOSITORYURL=${{ github.server_url }}/${{ github.repository }}
JUGGLER_EICD_VERSION=${{ github.ref_name }}
GITHUB_REPOSITORY=${{ github.repository }}
GITHUB_SHA=${{ github.event.pull_request.head.sha || github.sha }}
- run: |
gh api \
--method POST \
-H "Accept: application/vnd.github+json" \
/repos/${{ github.repository }}/statuses/${{ github.event.pull_request.head.sha || github.sha }} \
-f state='pending' \
-f target_url=${{ steps.trigger.outputs.web_url }} \
-f description='The juggler pipelines have been triggered...' \
-f context='eicweb/juggler'
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}