-
Notifications
You must be signed in to change notification settings - Fork 4
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 #38 from epics-containers/RTEMS2
New approach to adding RTEMS to the build matrix
- Loading branch information
Showing
10 changed files
with
121 additions
and
84 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
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
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 |
---|---|---|
|
@@ -3,3 +3,4 @@ repos/ | |
repos-build/ | ||
*.log | ||
*.out | ||
*.code-workspace |
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
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,11 +1,3 @@ | ||
# epics-base | ||
|
||
An container image for EPICS base libraries and tools built for linux-x86_64 and RTEMS powerpc mvme5500. | ||
|
||
This repository supports | ||
|
||
- cross compilation to supported EPICS targets | ||
- native compilation x86_64 | ||
- native compilation using non x86 github runners or qemu | ||
|
||
At present only two target architecures are provided. Future expansion is available via the build matrix in build.yml. | ||
An container image for EPICS base libraries and tools built for linux-x86_64 and RTEMS |
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
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
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,22 @@ | ||
#!/bin/bash | ||
|
||
# A script to extract the runtime files from the developer stage for use in | ||
# the runtime stage. | ||
|
||
# The first argument is the destination directory for the runtime files. | ||
DEST=${1} | ||
|
||
cd / | ||
|
||
for i in epics/epics-base/bin epics/epics-base/lib venv epics/support; do | ||
# strip any binaries | ||
strip $(find ${i}) 2>/dev/null | ||
|
||
# make sure the path to the parent exists | ||
if [ ! -d ${DEST}/$(dirname ${i}) ]; then | ||
mkdir -p ${DEST}/$(dirname ${i}) | ||
fi | ||
|
||
# move the directory to the new location | ||
mv ${i} ${DEST}/${i} | ||
done |
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
This file was deleted.
Oops, something went wrong.