baktainer/.forgejo/workflows/docker.yml
James Paterni 6e7adc330f
Some checks failed
Build Docker Image / build (push) Failing after 1m1s
CI Pipeline / test (push) Failing after 1m57s
Minimal CI / test (push) Failing after 10s
Build and Push Docker Image / test (push) Failing after 1m18s
Shell-Only CI (No Actions) / test (push) Failing after 53s
Simple CI Pipeline / test (push) Failing after 1s
Run Tests / test (push) Failing after 1m15s
Build Docker Image / notify (push) Failing after 1s
CI Pipeline / build (push) Has been skipped
Minimal CI / build (push) Has been skipped
Build and Push Docker Image / build (push) Has been skipped
Shell-Only CI (No Actions) / build (push) Has been skipped
Simple CI Pipeline / build (push) Has been skipped
CI Pipeline / notify (push) Successful in 1s
Shell-Only CI (No Actions) / notify (push) Successful in 1s
Simple CI Pipeline / notify (push) Successful in 1s
Node+Ruby CI Pipeline / test (push) Failing after 5m41s
Node+Ruby CI Pipeline / build (push) Has been skipped
Node+Ruby CI Pipeline / notify (push) Successful in 1s
Fix working directory errors in Forgejo Actions workflows
- Remove working-directory defaults that caused chdir errors
- Use explicit 'cd app' commands in all Ruby-related steps
- Fix ci.yml, test.yml, docker.yml, and shell-only.yml workflows
- Update documentation with working directory troubleshooting

The error occurred because working-directory was set before repository
checkout, causing the container to try to start in a non-existent directory.

Resolves: "chdir to cwd (..../app) set in config.json failed: no such file"

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-15 11:40:10 -04:00

119 lines
No EOL
3.8 KiB
YAML

name: Build and Push Docker Image
on:
push:
branches:
- main
tags:
- 'v*.*.*'
jobs:
test:
runs-on: docker
container:
image: ruby:3.3-alpine
steps:
- name: Install system dependencies including Node.js
run: |
# Detect package manager and install dependencies
if command -v apk >/dev/null 2>&1; then
# Alpine Linux
apk add --no-cache build-base libffi-dev linux-headers postgresql-dev git nodejs npm
elif command -v apt-get >/dev/null 2>&1; then
# Debian/Ubuntu
apt-get update && apt-get install -y build-essential libffi-dev libpq-dev git nodejs npm
elif command -v yum >/dev/null 2>&1; then
# CentOS/RHEL
yum install -y gcc make libffi-devel postgresql-devel git nodejs npm
elif command -v dnf >/dev/null 2>&1; then
# Fedora
dnf install -y gcc make libffi-devel postgresql-devel git nodejs npm
else
echo "Package manager not found. Installing Node.js manually..."
curl -fsSL https://deb.nodesource.com/setup_18.x | bash -
apt-get install -y nodejs || echo "Failed to install Node.js"
fi
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Ruby dependencies
run: |
cd app
gem install bundler -v 2.6.7
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
- name: Run RSpec tests
run: |
cd app
mkdir -p tmp
bundle exec rspec \
--format progress \
--format RspecJunitFormatter \
--out tmp/rspec_results.xml
- name: Upload test results
uses: actions/upload-artifact@v4
if: always()
with:
name: rspec-results
path: app/tmp/rspec_results.xml
build:
needs: test
runs-on: docker
if: github.event_name == 'push' && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/'))
steps:
- name: Install Node.js for actions
run: |
# Detect package manager and install Node.js
if command -v apk >/dev/null 2>&1; then
apk add --no-cache nodejs npm
elif command -v apt-get >/dev/null 2>&1; then
apt-get update && apt-get install -y nodejs npm
elif command -v yum >/dev/null 2>&1; then
yum install -y nodejs npm
elif command -v dnf >/dev/null 2>&1; then
dnf install -y nodejs npm
else
echo "Package manager not found. Installing Node.js manually..."
curl -fsSL https://deb.nodesource.com/setup_18.x | bash -
apt-get install -y nodejs || echo "Failed to install Node.js"
fi
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Extract metadata
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ secrets.DOCKER_IMAGE_NAME }}
tags: |
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=raw,value=latest,enable={{is_default_branch}}
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max