Add docker build to ci
This commit is contained in:
parent
1513541d73
commit
f0e512ec25
16
.github/workflows/ci.yml
vendored
16
.github/workflows/ci.yml
vendored
@ -83,14 +83,14 @@ jobs:
|
|||||||
args: -- -D warnings
|
args: -- -D warnings
|
||||||
|
|
||||||
build:
|
build:
|
||||||
name: Build Application
|
name: Build Binaries
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: [check, test, lints]
|
needs: [check, test, lints]
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
target:
|
target:
|
||||||
- x86_64-unknown-linux-gnu
|
- x86_64-unknown-linux-gnu
|
||||||
- aarch64-unknown-linux-gnu
|
# - aarch64-unknown-linux-gnu
|
||||||
# - powerpc64-unknown-linux-gnu
|
# - powerpc64-unknown-linux-gnu
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
@ -106,3 +106,15 @@ jobs:
|
|||||||
use-cross: true
|
use-cross: true
|
||||||
command: build
|
command: build
|
||||||
args: --release --target=${{ matrix.target }}
|
args: --release --target=${{ matrix.target }}
|
||||||
|
|
||||||
|
build-docker:
|
||||||
|
name: Build Docker Image
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
needs: [check, test, lints]
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Docker layer cache
|
||||||
|
uses: satackey/action-docker-layer-caching@v0.0.11
|
||||||
|
continue-on-error: true
|
||||||
|
- name: Build Image
|
||||||
|
run: docker build -t rohansircar/actix-demo:latest .
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
FROM rust:1.45 as builder
|
FROM rust:1.51 as builder
|
||||||
|
|
||||||
# ENV CARGO_HOME=/actix-demo/.cargo
|
# ENV CARGO_HOME=/actix-demo/.cargo
|
||||||
RUN USER=root cargo new --bin actix-demo
|
RUN USER=root cargo new --bin actix-demo
|
||||||
|
Loading…
Reference in New Issue
Block a user