forked from lwa-project/bifrost
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PSRDADA dies on a missing python for self-hosted.
- Loading branch information
1 parent
f0c62fe
commit 78de6d4
Showing
1 changed file
with
10 additions
and
10 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 |
---|---|---|
|
@@ -52,16 +52,6 @@ jobs: | |
gawk \ | ||
gnu-sed \ | ||
pkg-config | ||
- name: "Software Install - PSRDADA" | ||
if: ${{ matrix.os == 'ubuntu-20.04' || matrix.os == 'self-hosted' }} | ||
run: | | ||
git clone git://git.code.sf.net/p/psrdada/code psrdada | ||
cd psrdada | ||
./bootstrap | ||
./configure | ||
make -j all | ||
sudo make install | ||
cd .. | ||
- uses: actions/[email protected] | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
@@ -92,6 +82,16 @@ jobs: | |
jupyter_client \ | ||
nbformat \ | ||
nbconvert | ||
- name: "Software Install - PSRDADA" | ||
if: ${{ matrix.os == 'ubuntu-20.04' || matrix.os == 'self-hosted' }} | ||
run: | | ||
git clone git://git.code.sf.net/p/psrdada/code psrdada | ||
cd psrdada | ||
./bootstrap | ||
./configure | ||
make -j all | ||
sudo make install | ||
cd .. | ||
- uses: actions/checkout@v3 | ||
- name: "Build and Install" | ||
run: | | ||
|