Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
63 changes: 63 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
name: SourcetrailDB

on:
push:
branches:
- master
- idl2src-ci
pull_request:
branches: [ master ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Update package list
run: sudo apt-get update

- name: Install dependencies
run: sudo apt-get install gnudatalanguage

- name: Get FHD
uses: actions/checkout@v2
with:
repository: EoRImaging/FHD

- name: Download gdl artifact
uses: dawidd6/[email protected]
with:
workflow: build.yml
name: gdl
path: ./
repo: no-lex/idl2src
branch: main

- name: Download idl2src artifact
uses: dawidd6/[email protected]
with:
workflow: build.yml
name: idl2src
path: ./
repo: no-lex/idl2src
branch: main

- name: Build Database
run: |
chmod 777 idl2src
chmod 777 gdl
chmod 777 ci_script.sh
chmod 777 run_indexer.sh
./ci_script.sh
ls

- name: Upload database artifact
uses: actions/upload-artifact@v2
with:
name: FHD
path: |
./FHD.srctrldb
./FHD.srctrlprj
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ For further details, please see [Sullivan et al 2012](https://arxiv.org/abs/1209
* [Outputs](https://github.com/EoRImaging/FHD/blob/master/outputs.md): For documentation of the various outputs, see the outputs page.
* [Inputs](https://github.com/EoRImaging/FHD/blob/master/inputs.md): FHD inputs beam models, calibration files, and sky model catalogs. Currently available inputs are described on this page.
* [Publications](https://github.com/EoRImaging/FHD/blob/master/publications.md): FHD has been used in a variety of publications, documented on this page.
* [Sourcetrail](https://github.com/EoRImaging/FHD/actions): FHD's GitHub Actions generates a Sourcetrail database; just unpack the FHD artifact in the link and open it with [Sourcetrail](https://github.com/CoatiSoftware/Sourcetrail) for convenient, interactive visualization.

## Installation
Download the latest versions of these libraries/repos.
Expand Down