Update
Some checks failed
Build Jetbrains Devcontainers / build_act (symfony) (push) Failing after 54s

This commit is contained in:
Snoweuph 2024-07-27 23:46:32 +02:00
parent 2f721e6eed
commit 086d075da5
Signed by: Snoweuph
GPG key ID: A494330694B208EF
2 changed files with 10 additions and 9 deletions

View file

@ -1,5 +1,5 @@
name: "Build Symfony Devcontainer" name: "Build Jetbrains Devcontainers"
on: on:
push: push:
@ -9,6 +9,9 @@ on:
jobs: jobs:
build_act: build_act:
runs-on: 'priviliged' runs-on: 'priviliged'
strategy:
matrix:
toolchain: [symfony]
steps: steps:
- name: Install Docker - name: Install Docker
run: | run: |
@ -27,9 +30,10 @@ jobs:
id: build_act_base id: build_act_base
uses: 'https://git.euph.dev/actions/docker-build-push@v5' uses: 'https://git.euph.dev/actions/docker-build-push@v5'
with: with:
context: "{{defaultContext}}:Symfony" context: "{{defaultContext}}:jetbrains/${{ matrix.toolchain }}"
push: true push: true
build-args: JETBRAINS_DEPENDENCIES="fuse fuse-libs libXi libXrender libXtst fontconfig gtk3 tar dbus-libs git just jq fzf"
tags: | tags: |
git.euph.dev/development_tools/distrobox/jetbrains/symfony:latest git.euph.dev/development_tools/distrobox/jetbrains/${{ matrix.toolchain }}:latest
git.euph.dev/development_tools/distrobox/jetbrains/symfony:${{ gitea.run_number }} git.euph.dev/development_tools/distrobox/jetbrains/${{ matrix.toolchain }}:${{ gitea.run_number }}

View file

@ -1,4 +1,5 @@
FROM fedora:40 FROM fedora:40
ARG JETBRAINS_DEPENDENCIES
# Set environment variables # Set environment variables
ENV BOX_NAME="phpstorm" ENV BOX_NAME="phpstorm"
@ -6,11 +7,7 @@ ENV BOX_NAME="phpstorm"
# Install required packages and setup sources # Install required packages and setup sources
RUN curl -1sLf 'https://dl.cloudsmith.io/public/symfony/stable/setup.rpm.sh' | bash \ RUN curl -1sLf 'https://dl.cloudsmith.io/public/symfony/stable/setup.rpm.sh' | bash \
&& dnf install -y \ && dnf install -y \
# General Tools $JETBRAINS_DEPENDENCIES \
git make just jq nvim fzf \
# Jetbrain Tools
fuse fuse-libs libXi libXrender libXtst fontconfig gtk3 tar dbus-libs \
# Symfony Dependencies
php \ php \
composer \ composer \
php-pdo \ php-pdo \