Skip to content

Commit

Permalink
Revert "Automated deployment: Mon Feb 26 15:14:13 UTC 2024 66cce7b"
Browse files Browse the repository at this point in the history
This reverts commit 67dc669.
  • Loading branch information
donatas-b committed Feb 26, 2024
1 parent 67dc669 commit 793ae22
Show file tree
Hide file tree
Showing 62 changed files with 615 additions and 698 deletions.
71 changes: 71 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
# 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: Allure Report

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: maven

- uses: browser-actions/setup-chrome@latest
- run: chrome --version

- name: Build with Maven
run: mvn -B package --file pom.xml

- name: Test with Maven
run: mvn -B clean test

- uses: actions/upload-artifact@master
with:
name: allure-results
path: allure-results
retention-days: 20

- name: Get Allure history
uses: actions/checkout@v2
if: always()
continue-on-error: true
with:
ref: j-selenide
path: j-selenide

- name: Test XYZ bank action
uses: simple-elf/allure-report-action@master
if: always()
id: allure-report
with:
allure_results: allure-results
gh_pages: j-selenide
allure_report: allure-report
allure_history: allure-history
keep_reports: 20

- name: Deploy report to Github Pages
if: always()
uses: peaceiris/actions-gh-pages@v2
env:
PERSONAL_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PUBLISH_BRANCH: main
PUBLISH_DIR: allure-history
28 changes: 28 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Compiled class file
*.class

# Log file
*.log

# BlueJ files
*.ctxt

# Mobile Tools for Java (J2ME)
.mtj.tmp/

# Package Files #
*.jar
*.war
*.nar
*.ear
*.zip
*.tar.gz
*.rar

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
replay_pid*

.idea
target
allure-results
40 changes: 0 additions & 40 deletions 3/app.js

This file was deleted.

Empty file removed 3/data/behaviors.csv
Empty file.
1 change: 0 additions & 1 deletion 3/data/behaviors.json

This file was deleted.

Empty file removed 3/data/categories.csv
Empty file.
1 change: 0 additions & 1 deletion 3/data/categories.json

This file was deleted.

1 change: 0 additions & 1 deletion 3/data/packages.json

This file was deleted.

Empty file removed 3/data/suites.csv
Empty file.
1 change: 0 additions & 1 deletion 3/data/suites.json

This file was deleted.

1 change: 0 additions & 1 deletion 3/data/timeline.json

This file was deleted.

11 changes: 0 additions & 11 deletions 3/export/influxDbData.txt

This file was deleted.

10 changes: 0 additions & 10 deletions 3/export/mail.html

This file was deleted.

11 changes: 0 additions & 11 deletions 3/export/prometheusData.txt

This file was deleted.

Binary file removed 3/favicon.ico
Binary file not shown.
1 change: 0 additions & 1 deletion 3/history/categories-trend.json

This file was deleted.

1 change: 0 additions & 1 deletion 3/history/duration-trend.json

This file was deleted.

1 change: 0 additions & 1 deletion 3/history/history-trend.json

This file was deleted.

1 change: 0 additions & 1 deletion 3/history/history.json

This file was deleted.

1 change: 0 additions & 1 deletion 3/history/retry-trend.json

This file was deleted.

34 changes: 0 additions & 34 deletions 3/index.html

This file was deleted.

Loading

0 comments on commit 793ae22

Please sign in to comment.