Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing issue opener for scheduled jobs #2575

Merged
merged 2 commits into from
Dec 19, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ permissions:
contents: write
packages: read
pull-requests: write
issues: write

jobs:

Expand Down Expand Up @@ -264,6 +265,7 @@ jobs:
if: always()
run: cat log.txt


build-test:
name: "Remote: Build & test"
runs-on: ubuntu-latest
Expand Down Expand Up @@ -459,6 +461,7 @@ jobs:
if compgen -G './logs-${{ matrix.mapdl-version }}/*.log' > /dev/null ;then for f in ./logs-${{ matrix.mapdl-version }}/*.log; do echo "::group:: Log file $f" && cat $f && echo "::endgroup::" ; done; fi || echo "Failed to display the 'err' files."
if compgen -G './logs-${{ matrix.mapdl-version }}/*.out' > /dev/null ;then for f in ./logs-${{ matrix.mapdl-version }}/*.out; do echo "::group:: Output file $f" && cat $f && echo "::endgroup::" ; done; fi || echo "Failed to display the 'log' files."


build-test-ubuntu:
name: "Local: Build & test on Ubuntu"
runs-on: ubuntu-latest
Expand Down Expand Up @@ -591,6 +594,7 @@ jobs:
name: minimum_requirements.txt
path: ./minimum_requirements.txt


build-test-ubuntu-minimal:
name: "Local: Build & test minimal package on Ubuntu"
runs-on: ubuntu-latest
Expand Down Expand Up @@ -662,6 +666,7 @@ jobs:
name: ubuntu-v22.2.0-local-minimal.xml
path: ./ubuntu-v22.2.0-local-minimal.xml


test-windows:
if: github.repository == ''
name: "Local: Build & test on Windows"
Expand Down Expand Up @@ -779,6 +784,7 @@ jobs:
title: `Release FAILED!`,
}"


upload-docs-release:
name: "Upload release documentation"
if: github.event_name == 'push' && contains(github.ref, 'refs/tags')
Expand All @@ -793,6 +799,7 @@ jobs:
python-version: ${{ env.MAIN_PYTHON_VERSION }}
render-last: '5'


doc-index-stable:
name: "Deploy stable docs index"
runs-on: ubuntu-latest
Expand Down Expand Up @@ -821,6 +828,7 @@ jobs:
host-url: ${{ vars.MEILISEARCH_HOST_URL }}
api-key: ${{ env.MEILISEARCH_API_KEY }}


upload-dev-docs:
name: Upload dev documentation
if: github.ref == 'refs/heads/main' && !contains(github.ref, 'refs/tags')
Expand All @@ -833,6 +841,7 @@ jobs:
cname: ${{ env.DOCUMENTATION_CNAME }}
token: ${{ secrets.GITHUB_TOKEN }}


doc-index-dev:
name: "Deploy dev index docs"
runs-on: ubuntu-latest
Expand All @@ -845,7 +854,8 @@ jobs:
index-name: pymapdl-vdev
host-url: ${{ vars.MEILISEARCH_HOST_URL }}
api-key: ${{ env.MEILISEARCH_API_KEY }}



notify:
name: Notify failed build
needs: [upload-dev-docs]
Expand Down
Loading