Skip to content

Commit

Permalink
added building docker images for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jdx committed Dec 6, 2023
1 parent ea40d17 commit a56cc1d
Show file tree
Hide file tree
Showing 3 changed files with 91 additions and 3 deletions.
49 changes: 49 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: docker

on:
push:
tags: ["v*"]
branches: ['docker-release']
workflow_dispatch:

env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}

jobs:
docker:
name: docker-${{ matrix.flavor }}
strategy:
fail-fast: false
matrix:
flavor:
- deb
- rpm
- alpine
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: ghcr.io/jdx/rtx:${{ matrix.flavor }}
labels: ${{ steps.meta.outputs.labels }}
file: packaging/${{ matrix.flavor }}/Dockerfile
6 changes: 3 additions & 3 deletions .github/workflows/rtx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ jobs:
runs-on: ubuntu-22.04
needs: [build-linux]
timeout-minutes: 10
container: jdxcode/rtx:rpm
container: ghcr.io/jdx/rtx:rpm
if: github.event_name != 'pull_request'
steps:
- uses: actions/checkout@v4
Expand All @@ -191,7 +191,7 @@ jobs:
if-no-files-found: error
deb:
runs-on: ubuntu-22.04
container: jdxcode/rtx:deb
container: ghcr.io/jdx/rtx:deb
timeout-minutes: 10
if: github.event_name != 'pull_request'
needs: [build-linux]
Expand Down Expand Up @@ -305,7 +305,7 @@ jobs:
formula: rtx
bump-alpine:
runs-on: ubuntu-22.04
container: jdxcode/rtx:alpine
container: ghcr.io/jdx/rtx:alpine
timeout-minutes: 30
needs: [release]
steps:
Expand Down
39 changes: 39 additions & 0 deletions packaging/github-actions/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
FROM ubuntu
LABEL maintainer="jdx"
ENV PATH="/root/.cargo/bin:${PATH}"

RUN apt-get update \
&& apt-get upgrade -y \
&& apt-get install -y \
bash \
build-essential \
ca-certificates \
cargo \
curl \
direnv \
fish \
git \
gnupg \
libssl-dev \
pkg-config \
shellcheck \
shfmt \
sudo \
&& mkdir -p /etc/apt/keyrings \
&& curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y \
&& curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | sudo gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg \
&& echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_20.x nodistro main" | sudo tee /etc/apt/sources.list.d/nodesource.list \
&& apt-get update && apt-get install -y nodejs \
&& node -v \
&& npm i -g markdown-magic \
&& curl --proto '=https' --tlsv1.2 -sSf https://just.systems/install.sh | bash -s -- --to /usr/bin
&& curl -L --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.sh | bash
&& cargo binstall -y \
cargo-deny \
cargo-llvm-cov \
cargo-machete \
cargo-msrv \
cross \
nextest \
&& rustup toolchain install nightly --component llvm-tools-preview \
&& apt-get clean

0 comments on commit a56cc1d

Please sign in to comment.