Skip to content

Commit

Permalink
re-enabled cicd jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
ice-ares committed Jan 17, 2024
1 parent d01293c commit e2b5785
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/CICD.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
https://github.com/ice-blockchain/${{ github.event.repository.name }}
verify-latest-versions-used:
name: Verify Latest Versions
if: ${{ false }}
if: ${{ (github.event_name == 'pull_request' && github.event.pull_request.draft == false) || github.event_name == 'push' }}
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
https://github.com/ice-blockchain/${{ github.event.repository.name }}
verify-auto-generated:
name: Verify Auto Generated
if: ${{ false }}
if: ${{ (github.event_name == 'pull_request' && github.event.pull_request.draft == false) || github.event_name == 'push' }}
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
https://github.com/ice-blockchain/${{ github.event.repository.name }}
lint:
name: Lint
if: ${{ false }}
if: ${{ (github.event_name == 'pull_request' && github.event.pull_request.draft == false) || github.event_name == 'push' }}
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand Down Expand Up @@ -189,7 +189,7 @@ jobs:
- email
- notifications/push
- auth
if: ${{ false }}
if: ${{ (github.event_name == 'pull_request' && github.event.pull_request.draft == false) || github.event_name == 'push' }}
runs-on: ubuntu-latest
# runs-on: self-hosted-ubuntu-latest-x64
steps:
Expand Down Expand Up @@ -251,7 +251,7 @@ jobs:
- email
- notifications/push
- auth
if: ${{ false }}
if: ${{ (github.event_name == 'pull_request' && github.event.pull_request.draft == false) || github.event_name == 'push' }}
runs-on: ubuntu-latest
# runs-on: self-hosted-ubuntu-latest-x64
steps:
Expand Down Expand Up @@ -312,7 +312,7 @@ jobs:
then
exit 0
else
exit 0
exit 1
fi
- name: Slack Notification For Failure/Cancellation
if: ${{ github.event_name == 'push' && (failure() || cancelled()) }}
Expand All @@ -327,7 +327,7 @@ jobs:
SLACK_FOOTER: |
https://github.com/ice-blockchain/${{ github.event.repository.name }}
release:
needs: [ build ]
needs: [ PR ]
name: Release
if: ${{ github.event_name == 'push' }}
runs-on: ubuntu-latest
Expand Down

0 comments on commit e2b5785

Please sign in to comment.