Skip to content

Commit

Permalink
ci: finalise 3.5.0
Browse files Browse the repository at this point in the history
ci: finalise 3.5.0
  • Loading branch information
Yalz authored Nov 8, 2024
2 parents 1e32b22 + 3cdd412 commit ab992b5
Show file tree
Hide file tree
Showing 871 changed files with 11,063 additions and 4,583 deletions.
33 changes: 14 additions & 19 deletions .github/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,26 +4,21 @@ FROM amazoncorretto:21-alpine-jdk

COPY ./ldes-server-application/target/ldes-server-application.jar ./

COPY ./ldes-server-infra-postgres/postgres-ingest-repository/target/postgres-ingest-repository-jar-with-dependencies.jar ./lib/
COPY ./ldes-server-infra-postgres/postgres-retention-repository/target/postgres-retention-repository-jar-with-dependencies.jar ./lib/
COPY ./ldes-server-infra-postgres/postgres-fragmentation-repository/target/postgres-fragmentation-repository-jar-with-dependencies.jar ./lib/
# Postgres Implementations
COPY ./ldes-server-infra-postgres/postgres-pagination-repository/target/postgres-pagination-repository-jar-with-dependencies.jar ./lib/
COPY ./ldes-server-infra-postgres/postgres-admin-repository/target/postgres-admin-repository-jar-with-dependencies.jar ./lib/
COPY ./ldes-server-infra-postgres/postgres-liquibase/target/postgres-liquibase-jar-with-dependencies.jar ./lib/

COPY ./ldes-server-port-ingest-rest/target/ldes-server-port-ingest-rest-jar-with-dependencies.jar ./lib/
COPY ./ldes-server-port-ingest/target/ldes-server-port-ingest-jar-with-dependencies.jar ./lib/
COPY ./ldes-server-port-fetch/target/ldes-server-port-fetch-jar-with-dependencies.jar ./lib/
COPY ./ldes-server-port-fetch-rest/target/ldes-server-port-fetch-rest-jar-with-dependencies.jar ./lib/
COPY ./ldes-server-admin/target/ldes-server-admin-jar-with-dependencies.jar ./lib/
COPY ./ldes-fragmentisers/ldes-fragmentisers-common/target/ldes-fragmentisers-common-jar-with-dependencies.jar ./lib/
COPY ./ldes-fragmentisers/ldes-fragmentisers-geospatial/target/ldes-fragmentisers-geospatial-jar-with-dependencies.jar ./lib/
COPY ./ldes-fragmentisers/ldes-fragmentisers-timebased-hierarchical/target/ldes-fragmentisers-timebased-hierarchical-jar-with-dependencies.jar ./lib/
COPY ./ldes-fragmentisers/ldes-fragmentisers-reference/target/ldes-fragmentisers-reference-jar-with-dependencies.jar ./lib/
COPY ./ldes-server-pagination/target/ldes-server-pagination-jar-with-dependencies.jar ./lib/
COPY ./ldes-server-retention/target/ldes-server-retention-jar-with-dependencies.jar ./lib/
COPY ./ldes-server-compaction/target/ldes-server-compaction-jar-with-dependencies.jar ./lib/
COPY ./ldes-server-instrumentation/target/ldes-server-instrumentation-jar-with-dependencies.jar ./lib/
COPY ./ldes-server-infra-postgres/postgres-maintenance-repository/target/postgres-maintenance-repository-jar-with-dependencies.jar ./lib/
COPY ./ldes-server-infra-postgres/postgres-fetch-repository/target/postgres-fetch-repository-jar-with-dependencies.jar ./lib/
COPY ./ldes-server-infra-postgres/postgres-ingest-repository/target/postgres-ingest-repository-jar-with-dependencies.jar ./lib/

# Interfaces
COPY ./ldes-server-ingest/ldes-server-ingest-rest/target/ldes-server-ingest-rest-jar-with-dependencies.jar ./lib/
COPY ./ldes-server-fetch/ldes-server-fetch-rest/target/ldes-server-fetch-rest-jar-with-dependencies.jar ./lib/
COPY ./ldes-server-admin/ldes-server-admin-rest/target/ldes-server-admin-rest-jar-with-dependencies.jar ./lib/

# Plugin Fragmentations
COPY ./ldes-server-fragmentation/ldes-server-fragmentation-geospatial/target/ldes-server-fragmentation-geospatial-jar-with-dependencies.jar ./lib/
COPY ./ldes-server-fragmentation/ldes-server-fragmentation-timebased-hierarchical/target/ldes-server-fragmentation-timebased-hierarchical-jar-with-dependencies.jar ./lib/
COPY ./ldes-server-fragmentation/ldes-server-fragmentation-reference/target/ldes-server-fragmentation-reference-jar-with-dependencies.jar ./lib/

## Dependency for pyroscope
RUN apk --no-cache add libstdc++
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build-documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ name: Build Docs
on:
push:
branches:
- master
- main
- develop

workflow_dispatch:
Expand Down Expand Up @@ -51,14 +51,14 @@ jobs:
with:
node-version: 16
registry-url: https://npm.pkg.github.com/
- run: npm i -g @koumoul/gh-pages-multi
- run: npm i -g @yalz/gh-pages-multi
- run: |
git config --global user.email "vsds@noreply.com"
git config --global user.name "VSDS CI"
git config --global url.https://${{ env.PAT }}@github.com/.insteadOf https://github.com/
env:
PAT: ${{secrets.DEPLOY_DOCS_PAT}}
- run: |
gh-pages-multi deploy --title ${{env.title}} -t ${{steps.version.outputs.version}} -s docs/_site
gh-pages-multi deploy --title "${{env.title}}" -t ${{steps.version.outputs.version}} -s docs/_site
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
Loading

0 comments on commit ab992b5

Please sign in to comment.