Skip to content

Implementing GitHub Actions Pipeline #57

Implementing GitHub Actions Pipeline

Implementing GitHub Actions Pipeline #57

Workflow file for this run

# © 2024. TU Dortmund University,
# Institute of Energy Systems, Energy Efficiency and Energy Economics,
# Research group Distribution grid planning and operation
#
name: CI
on:
push:
branches:
- main
- dev
- 'feature/*'
- 'hotfix/*'
- 'release/*'
pull_request:
branches:
- main
- dev
jobs:
checkout:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
# Check if it's a pull request
ref: ${{ github.event.pull_request.head.ref || github.ref }}
repository: ${{ github.event.pull_request.head.repo.full_name || github.repository }}
- name: Show current branch
run: |
git rev-parse --abbrev-ref HEAD
pwd
ls -la
test-mount:
runs-on: ubuntu-latest
steps:
# 1. Code Checkout auf dem Host (ohne Container)
- name: Checkout Code
uses: actions/checkout@v4
# 2. Überprüfung des Verzeichnisses auf dem Host nach dem Checkout
- name: Verify Files on Host after Checkout
run: |
echo "Verzeichnis auf dem Host:"
ls -la ${{ github.workspace }}
# 3. Container-Schritt zum Testen des Mounts
- name: Verify Mount in Container
container:

Check failure on line 55 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 55, Col: 9): Unexpected value 'container'

Check failure on line 55 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 55, Col: 9): Unexpected value 'container'
image: ubuntu:latest # Verwende ein einfaches Image zum Testen
volumes:
- ${{ github.workspace }}:/simona:rw
run: |
echo "Verzeichnis im Container:"
ls -la /simona
build:
needs: checkout
runs-on: ubuntu-latest
container:
image: gradle:8.10-jdk17
volumes:
- ${{ github.workspace }}:/simona:rw
steps:
- name: Dir Check
run: |
pwd
ls -la /__w/simona/simona
echo "__w"
ls -la /__w
echo "__w/_temp"
ls -la /__w/_temp
- name: Checking Gradle & Java
run: |
java -version && gradle --version
- name: Building Project
run: |
pwd
ls -la
gradle clean assemble
test:
needs: build
runs-on: ubuntu-latest
container:
image: gradle:8.10-jdk17
options: --user root
volumes:
- ${{ github.workspace }}:/__w/simona/simona:rw
steps:
- name: Checking Gradle & Java
run: |
java -version && gradle --version
- name: Download Build Artifact
uses: actions/download-artifact@v3
with:
name: simona-3.1.0-all.jar
- name: Running tests
run: |
gradle --refresh-dependencies spotlessCheck pmdMain pmdTest
- name: Generate JavaDoc
run: |
set +x
cd simona
./gradlew javadoc