mirror of https://github.com/koide3/small_gicp.git
commit
66d61731b4
|
|
@ -16,6 +16,7 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
DISTRO: [jammy]
|
||||
TOOLCHAIN: [gcc, llvm]
|
||||
|
||||
steps:
|
||||
|
|
@ -35,5 +36,6 @@ jobs:
|
|||
uses: docker/build-push-action@v2
|
||||
with:
|
||||
file: ${{github.workspace}}/docker/Dockerfile.${{ matrix.TOOLCHAIN }}
|
||||
build-args: BASE_IMAGE=ubuntu:${{ matrix.DISTRO }}
|
||||
context: .
|
||||
push: false
|
||||
|
|
|
|||
|
|
@ -1,4 +1,6 @@
|
|||
FROM ubuntu:jammy
|
||||
ARG BASE_IMAGE
|
||||
|
||||
FROM ${BASE_IMAGE}
|
||||
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue