Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
840f9ee
update geant4 version
tomeichlersmith Sep 29, 2020
55a404b
first draft, let's see if it works
tomeichlersmith Oct 7, 2020
6b685c4
ignore utility apps as well as ddeve
tomeichlersmith Oct 8, 2020
7cba6b2
copy ROOT and xerces-c building into Dockerfile itself
tomeichlersmith Oct 8, 2020
576ffc9
define build packages instead of using sed
tomeichlersmith Oct 8, 2020
de67a59
comment out changes to make sure we have one successful build with
tomeichlersmith Oct 8, 2020
6062e20
move everything into Dockerfile
tomeichlersmith Oct 8, 2020
27543a1
move package list documentation to its own file
tomeichlersmith Oct 8, 2020
1f982b9
patch up sytax errors and document
tomeichlersmith Oct 8, 2020
d553b72
cleanup docs
tomeichlersmith Oct 8, 2020
3288106
cleanup central README documentation
tomeichlersmith Oct 8, 2020
522dd3b
successfully building and installing dd4hep and acts
tomeichlersmith Oct 9, 2020
a132303
cleanup and moving of labels/args
tomeichlersmith Oct 9, 2020
6f72b4f
update cmake style to clean up
tomeichlersmith Oct 9, 2020
04e5724
patch typo
tomeichlersmith Oct 9, 2020
ff244aa
move boost to before dd4hep
tomeichlersmith Oct 9, 2020
7429a12
put source inside of temp working directory
tomeichlersmith Oct 9, 2020
07df8d8
remove typo in geant4 building
tomeichlersmith Oct 11, 2020
2ce461a
patch up ROOTDIR to ROOTSYS in entrypoint script
tomeichlersmith Oct 12, 2020
1279742
small updates to docs
tomeichlersmith Oct 12, 2020
29bd975
allow for changing of ldmx-sw branch to test
tomeichlersmith Oct 13, 2020
290c430
change ldmx-sw testing branch to master
tomeichlersmith Nov 10, 2020
aeb2c7c
Update ACTS to version 1.2.1
tomeichlersmith Nov 10, 2020
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
11 changes: 11 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,13 +88,24 @@ jobs:
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache
tags: ${{ steps.generate_tag.outputs.push_tags }}
-
name: Determine ldmx-sw Branch to Test
id: ldmx_sw_branch
run: |
_branch=""
if [ -f ldmx-sw-branch ]; then
_branch=$(cat ldmx-sw-branch)
fi
echo "Test against ldmx-sw/${_branch}"
echo ::set-output name=branch::${_branch}
-
name: Pull down ldmx-sw for testing
uses: actions/checkout@v2
with:
repository: LDMX-Software/ldmx-sw
submodules: recursive
path: ldmx-sw
ref: ${{ steps.ldmx_sw_branch.outputs.branch }}
-
name: Test the Build Image
run: |
Expand Down
Loading