-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #496 from ralphlange/gha-ci-fixes
GitHub Actions setup fixes
- Loading branch information
Showing
6 changed files
with
27 additions
and
42 deletions.
There are no files selected for viewing
Submodule .ci
updated
6 files
+13 −9 | .github/workflows/build-and-test.yml | |
+13 −0 | README.md | |
+1 −1 | cue-test.py | |
+21 −3 | cue.py | |
+1 −1 | defaults.set | |
+2 −2 | github-actions/ci-scripts-build.yml.example-full |
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 |
---|---|---|
@@ -1,24 +1,6 @@ | ||
MODULES=PVDATA PVACCESS NT PVDATABASE asyn ADSupport | ||
include os | ||
|
||
BASE_DIRNAME=base | ||
BASE_REPONAME=epics-base | ||
BASE_REPOOWNER=epics-base | ||
BASE_VARNAME=EPICS_BASE | ||
BASE_RECURSIVE=no | ||
|
||
PVDATA_REPONAME=pvDataCPP | ||
PVDATA_REPOOWNER=epics-base | ||
|
||
PVACCESS_REPONAME=pvAccessCPP | ||
PVACCESS_REPOOWNER=epics-base | ||
|
||
NT_REPONAME=normativeTypesCPP | ||
NT_REPOOWNER=epics-base | ||
|
||
PVDATABASE_REPONAME=pvDatabaseCPP | ||
PVDATABASE_REPOOWNER=epics-base | ||
|
||
ASYN_REPOOWNER=epics-modules | ||
ADD_MODULES=ADSUPPORT | ||
|
||
ADSUPPORT_REPOOWNER=areaDetector | ||
ADSUPPORT_HOOK=.ci-local/adsupport-config.py |
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,9 @@ | ||
#!/bin/sh | ||
set -e -x | ||
|
||
[ -d "asyn/asynDriver" ] || exit 1 | ||
|
||
[ -f "/usr/include/rpc/rpc.h" ] && exit 0 | ||
|
||
[ -f "/usr/include/tirpc/rpc/rpc.h" ] && \ | ||
echo "TIRPC=YES" >> "configure/CONFIG_SITE.Common.linux-x86_64" |
Empty file.
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 |
---|---|---|
@@ -1,21 +1,10 @@ | ||
MODULES=PVDATA PVACCESS NT PVDATABASE asyn | ||
include defaults | ||
|
||
BASE_DIRNAME=base | ||
BASE_REPONAME=epics-base | ||
BASE_REPOOWNER=epics-base | ||
BASE_VARNAME=EPICS_BASE | ||
BASE_RECURSIVE=no | ||
|
||
PVDATA_REPONAME=pvDataCPP | ||
PVDATA_REPOOWNER=epics-base | ||
MODULES=PVDATA PVACCESS NTYPES PVDATABASE ASYN | ||
|
||
PVACCESS_REPONAME=pvAccessCPP | ||
PVACCESS_REPOOWNER=epics-base | ||
|
||
NT_REPONAME=normativeTypesCPP | ||
NT_REPOOWNER=epics-base | ||
BASE_RECURSIVE=no | ||
|
||
PVDATABASE_REPONAME=pvDatabaseCPP | ||
PVDATABASE_REPOOWNER=epics-base | ||
|
||
ASYN_REPOOWNER=epics-modules | ||
ASYN_HOOK=.ci-local/asyn-config.sh |
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