Merge pull request #525 from napi-rs/debian-docker

ci: add debian docker image
This commit is contained in:
LongYinan 2021-04-12 11:22:23 +08:00 committed by GitHub
commit a3783e733f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 31 additions and 4 deletions

View file

@ -2,6 +2,9 @@ name: macOS-Android
on:
push:
branches:
- main
pull_request:
env:
DEBUG: 'napi:*'

View file

@ -25,10 +25,18 @@ jobs:
username: ${{ secrets.GH_CONTAINER_UNAME }}
password: ${{ secrets.GH_TOKEN }}
- name: Build and push
- name: Build and push alpine
uses: docker/build-push-action@v2
with:
file: alpine.Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: ghcr.io/${{ github.repository }}/nodejs-rust:lts-alpine
- name: Build and push debian
uses: docker/build-push-action@v2
with:
file: debian.Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: ghcr.io/${{ github.repository }}/nodejs-rust:lts-debian

View file

@ -32,10 +32,10 @@ jobs:
- name: Pull docker image
run: |
docker login -u $DOCKER_USERNAME -p $DOCKER_PASSWORD $DOCKER_REGISTRY_URL
docker pull docker.pkg.github.com/napi-rs/napi-rs/nodejs-rust:lts-alpine
docker tag docker.pkg.github.com/napi-rs/napi-rs/nodejs-rust:lts-alpine builder
docker pull $DOCKER_REGISTRY_URL/${{ github.repository }}/nodejs-rust:lts-alpine
docker tag $DOCKER_REGISTRY_URL/${{ github.repository }}/nodejs-rust:lts-alpine builder
env:
DOCKER_REGISTRY_URL: docker.pkg.github.com
DOCKER_REGISTRY_URL: ghcr.io
DOCKER_USERNAME: ${{ github.actor }}
DOCKER_PASSWORD: ${{ secrets.GITHUB_TOKEN }}

16
debian.Dockerfile Normal file
View file

@ -0,0 +1,16 @@
FROM node:lts
ENV RUSTUP_HOME=/usr/local/rustup \
CARGO_HOME=/usr/local/cargo \
PATH=/usr/local/cargo/bin:$PATH
RUN wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add - && \
echo "deb http://apt.llvm.org/stretch/ llvm-toolchain-stretch main" >> /etc/apt/sources.list && \
echo "deb-src http://apt.llvm.org/stretch/ llvm-toolchain-stretch main" >> /etc/apt/sources.list && \
apt-get update && \
apt-get install -y --fix-missing \
llvm \
clang \
rcs \
ninja-build && \
curl https://sh.rustup.rs -sSf | sh -s -- -y