Skip to content

Commit

Permalink
Install compiler and make in containers with neurodamus.
Browse files Browse the repository at this point in the history
  • Loading branch information
matz-e committed Dec 11, 2024
1 parent 76beeec commit 59710f2
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/spacktainer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ jobs:
# - multiscale-run
- neurodamus-hippocampus
- neurodamus-neocortex
- neurodamus-thalamus
- system-benchmarks
runs-on:
- codebuild-spacktainers-tf-${{ github.run_id }}-${{ github.run_attempt }}
Expand All @@ -94,6 +95,9 @@ jobs:
# Triggers building the 'builder' image, otherwise it is optimized away
COPY --from=builder /etc/debian_version /etc/debian_version
EOF
if [[ -f Dockerfile.epilogue ]]; then
cat Dockerfile.epilogue >> Dockerfile
fi
- name: build ${{ matrix.spacktainer }}
uses: ./.github/actions/build_container
with:
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
RUN apt-get update \
&& apt-get install -y gcc g++ make \
&& rm -rf /var/lib/apt/lists/*
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
RUN apt-get update \
&& apt-get install -y gcc g++ make \
&& rm -rf /var/lib/apt/lists/*
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
RUN apt-get update \
&& apt-get install -y gcc g++ make \
&& rm -rf /var/lib/apt/lists/*

0 comments on commit 59710f2

Please sign in to comment.