Skip to content

Commit

Permalink
RM 4
Browse files Browse the repository at this point in the history
  • Loading branch information
wardru committed Feb 4, 2024
1 parent b63e713 commit 2df9ff1
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,18 @@ name: CI Workflow
on: [push, pull_request]

jobs:
format:
runs-on: ubuntu-latest
container:
image: ghcr.io/panduza/pzacxx-build-img:latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Format
run: |
./scripts/format.sh
build:
runs-on: ubuntu-latest
container:
Expand Down
5 changes: 3 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM archlinux:base-devel-20231001.0.182270
FROM archlinux:base-devel-20240101.0.204074

RUN echo -e "\n[multilib]\nInclude = /etc/pacman.d/mirrorlist" | sudo tee -a /etc/pacman.conf
RUN pacman -Syu --noconfirm
Expand All @@ -14,7 +14,8 @@ RUN pacman -Sy --noconfirm \
gcc \
clang \
gtest \
grcov
grcov \
nodejs

RUN python -m venv /opt/venv
ENV PATH="/opt/venv/bin:$PATH"
Expand Down
2 changes: 1 addition & 1 deletion scripts/docker_pull.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/bash

docker pull ghcr.io/panduza/pzacx-build-img:latest
docker pull ghcr.io/panduza/pzacxx-build-img:latest

0 comments on commit 2df9ff1

Please sign in to comment.