Skip to content

Commit

Permalink
reenable all tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mucsi96 committed Jul 6, 2024
1 parent ae808b7 commit 6e33e61
Showing 1 changed file with 50 additions and 50 deletions.
100 changes: 50 additions & 50 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,55 +31,55 @@ jobs:
path: ${{ steps.pack-test-pages.outputs.artifact }}
retention-days: 30

# deploy-test-pages:
# runs-on: ubuntu-latest
# needs: pack-test-pages
# permissions:
# pages: write # to deploy to Pages
# id-token: write # to verify the deployment originates from an appropriate source
# environment:
# name: github-pages
# url: ${{ steps.deployment.outputs.page_url }}
# steps:
# - name: Deploy to GitHub Pages
# id: deployment
# uses: actions/deploy-pages@v4
deploy-test-pages:
runs-on: ubuntu-latest
needs: pack-test-pages
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4

# build-test-docker-image:
# runs-on: ubuntu-latest
# permissions:
# contents: write
# steps:
# - uses: actions/checkout@v4
# with:
# fetch-depth: 0
# - uses: actions/setup-python@v4
# with:
# python-version: 3.12
# cache: pip
# - run: pip install -r requirements.txt
# - run: python scripts/build_test_docker_image.py ${{ secrets.GITHUB_TOKEN }} ${{ secrets.ANSIBLE_VAULT_KEY }}
build-test-docker-image:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v4
with:
python-version: 3.12
cache: pip
- run: pip install -r requirements.txt
- run: python scripts/build_test_docker_image.py ${{ secrets.GITHUB_TOKEN }} ${{ secrets.ANSIBLE_VAULT_KEY }}

# publish-test-npm-package:
# runs-on: ubuntu-latest
# permissions:
# contents: write
# steps:
# - uses: actions/checkout@v4
# with:
# fetch-depth: 0
# - uses: actions/setup-python@v4
# with:
# python-version: 3.12
# cache: pip
# - uses: actions/setup-node@v4
# with:
# cache: npm
# cache-dependency-path: src/package-lock.json
# - run: pip install -r requirements.txt
# - run: npm ci
# working-directory: src
# - run: python scripts/publish_test_npm_package.py ${{ secrets.GITHUB_TOKEN }} ${{ secrets.ANSIBLE_VAULT_KEY }}
publish-test-npm-package:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v4
with:
python-version: 3.12
cache: pip
- uses: actions/setup-node@v4
with:
cache: npm
cache-dependency-path: src/package-lock.json
- run: pip install -r requirements.txt
- run: npm ci
working-directory: src
- run: python scripts/publish_test_npm_package.py ${{ secrets.GITHUB_TOKEN }} ${{ secrets.ANSIBLE_VAULT_KEY }}

publish-test-mvn-package:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -107,9 +107,9 @@ jobs:
build-python-lib:
runs-on: ubuntu-latest
needs:
# - deploy-test-pages
# - build-test-docker-image
# - publish-test-npm-package
- deploy-test-pages
- build-test-docker-image
- publish-test-npm-package
- publish-test-mvn-package
environment: release
permissions:
Expand Down

0 comments on commit 6e33e61

Please sign in to comment.