Skip to content

Commit

Permalink
Remove Circle, fix TTY issue in verify script (#133)
Browse files Browse the repository at this point in the history
* Remove Circle, fix TTY issue in verify script
  • Loading branch information
amshamah419 authored Sep 8, 2024
1 parent 9d817e4 commit 2399589
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 136 deletions.
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

0 comments on commit 2399589

Please sign in to comment.