File tree Expand file tree Collapse file tree 2 files changed +12
-1
lines changed
Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 4747 ./scripts/format.sh && ./scripts/error_on_dirty.sh
4848 node ./scripts/validate_changelog.js
4949 npm run docs && ./scripts/error_on_dirty.sh
50+
51+ docker-image :
52+ needs : format-taginfo-docs
53+ runs-on : ubuntu-22.04
54+ steps :
55+ - name : Check out the repo
56+ uses : actions/checkout@v3
57+ - name : Docker build
58+ run : |
59+ docker build -f docker/Dockerfile .
5060
5161 build-test-publish :
5262 needs : format-taginfo-docs
Original file line number Diff line number Diff line change @@ -10,7 +10,8 @@ RUN apt-get update && \
1010COPY . /src
1111WORKDIR /src
1212
13- RUN NPROC=${BUILD_CONCURRENCY:-$(grep -c ^processor /proc/cpuinfo 2>/dev/null || 1)} echo "Building OSRM ${DOCKER_TAG}" && \
13+ RUN NPROC=${BUILD_CONCURRENCY:-$(grep -c ^processor /proc/cpuinfo 2>/dev/null || 1)} && \
14+ echo "Building OSRM ${DOCKER_TAG}" && \
1415 git show --format="%H" | head -n1 > /opt/OSRM_GITSHA && \
1516 echo "Building OSRM gitsha $(cat /opt/OSRM_GITSHA)" && \
1617 mkdir -p build && \
You can’t perform that action at this time.
0 commit comments