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

Remove Circle, fix TTY issue in verify script #133

Merged
merged 4 commits into from
Sep 8, 2024
Merged
Show file tree
Hide file tree
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
127 changes: 0 additions & 127 deletions .circleci/config.yml

This file was deleted.

12 changes: 4 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,7 @@
name: Build and Release

on:
push:
branches:
- master
tags:
- 'v*.*.*'

on: pull_request

jobs:
run-unit-tests:
strategy:
Expand Down Expand Up @@ -44,6 +39,7 @@ jobs:
path: test-results

verify:
if: github.ref == 'refs/heads/master'
runs-on: ubuntu-latest
steps:
- name: Checkout code
Expand Down Expand Up @@ -116,4 +112,4 @@ jobs:
env:
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
run: |
poetry publish -u __token__ -p $PYPI_TOKEN
poetry publish -u __token__ -p $PYPI_TOKEN
2 changes: 1 addition & 1 deletion verify.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set -e
# Script to run extra verifications

# Verify that code-gen.sh doesn't generate a diff
bash -x ./gen-code.sh
bash ./gen-code.sh # Removed the '-x' for verbosity in CI
# we diff only the code
DIFF_OUT=$(git diff -- demisto_client)

Expand Down
Loading