Skip to content

Verbose Docker Env Variables #54

Verbose Docker Env Variables

Verbose Docker Env Variables #54

Workflow file for this run

# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Java CI with Maven
on:
push:
branches:
- "*"
release:
types: [published, edited]
jobs:
build:
runs-on: ubuntu-latest
# https://docs.github.com/en/actions/using-containerized-services/about-service-containers
services:
s3proxy:
image: andrewgaul/s3proxy
ports:
- 4000:80
env:

Check failure on line 33 in .github/workflows/maven.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/maven.yml

Invalid workflow file

You have an error in your yaml syntax on line 33
JCLOUDS_FILESYSTEM_BASEDIR: /data
S3PROXY_AUTHORIZATION: "aws-v2-or-v4"
JCLOUDS_PROVIDER: filesystem
JCLOUDS_REGIONS: "site2-low" \
LOG_LEVEL: "info"
S3PROXY_ENDPOINT: "http://0.0.0.0:80" \
S3PROXY_IDENTITY: "local-identity" \
S3PROXY_CREDENTIAL: "local-credential"
S3PROXY_VIRTUALHOST: ""
S3PROXY_KEYSTORE_PATH: "keystore.jks" \
S3PROXY_KEYSTORE_PASSWORD: "password" \
S3PROXY_CORS_ALLOW_ALL: "false" \
S3PROXY_CORS_ALLOW_ORIGINS: "" \
S3PROXY_CORS_ALLOW_METHODS: "" \
S3PROXY_CORS_ALLOW_HEADERS: "" \
S3PROXY_IGNORE_UNKNOWN_HEADERS: "false" \
S3PROXY_ENCRYPTED_BLOBSTORE: "" \
S3PROXY_ENCRYPTED_BLOBSTORE_PASSWORD: "" \
S3PROXY_ENCRYPTED_BLOBSTORE_SALT: "" \
JCLOUDS_ENDPOINT: "" \
JCLOUDS_REGION: "" \
JCLOUDS_IDENTITY: "remote-identity" \
JCLOUDS_CREDENTIAL: "remote-credential" \
JCLOUDS_KEYSTONE_VERSION: "" \
JCLOUDS_KEYSTONE_SCOPE: "" \
JCLOUDS_KEYSTONE_PROJECT_DOMAIN_NAME: "" \
volumes:
- /dockerImage/data:/data
steps:
- uses: actions/checkout@v3
- name: Put test resources in S3Proxy Container
run: |
aws --endpoint-url=http://127.0.0.1:4000 --region site2-low s3 mb s3://nfive
aws --endpoint-url=http://127.0.0.1:4000 --region site2-low s3 cp ${{ github.workspace }}/src/test/resources/nfive s3://nfive --recursive
- name: Set up JDK 8
uses: actions/setup-java@v3
with:
java-version: '8'
distribution: 'temurin'
cache: maven
#Before building the Repo a docker container needs to intialized such that the test cases can work properly
# https://github.com/addnab/docker-run-action
- name: Build with Maven
run: mvn -B package --file pom.xml
# Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive
- name: Update dependency graph
uses: advanced-security/maven-dependency-submission-action@571e99aab1055c2e71a1e2309b9691de18d6b7d6