Skip to content

Commit

Permalink
chore: Disable Github Actions until fixed (#43)
Browse files Browse the repository at this point in the history
* chore: Disable Github Actions until fixed

* disable one more
  • Loading branch information
amaury1093 authored Mar 15, 2024
1 parent 3eef00a commit 0a736a3
Show file tree
Hide file tree
Showing 12 changed files with 32 additions and 9 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:

jobs:
cleanup-runs:
if: false # Skip, fix in ref: https://github.com/Inco-fhevm/zbc-ethermint/issues/42
runs-on: ubuntu-latest
steps:
- uses: rokroskar/workflow-run-cleanup-action@master
Expand All @@ -14,6 +15,7 @@ jobs:
if: "!startsWith(github.ref, 'refs/tags/') && github.ref != 'refs/heads/main'"

build:
if: false # Skip, fix in ref: https://github.com/Inco-fhevm/zbc-ethermint/issues/42
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,12 @@ on:
# The branches below must be a subset of the branches above
branches: [main]
schedule:
- cron: '37 21 * * 4'
- cron: "37 21 * * 4"

jobs:
analyze:
name: Analyze
if: false # Skip, fix in ref: https://github.com/Inco-fhevm/zbc-ethermint/issues/42
runs-on: ubuntu-latest
permissions:
actions: read
Expand All @@ -32,7 +33,7 @@ jobs:
strategy:
fail-fast: false
matrix:
language: ['go', 'javascript', 'python']
language: ["go", "javascript", "python"]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ]
# Learn more:
# https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ permissions:

jobs:
dependency-review:
if: false # Skip, fix in ref: https://github.com/Inco-fhevm/zbc-ethermint/issues/42
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v4
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/deploy-contract.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:

jobs:
cleanup-runs:
if: false # Skip, fix in ref: https://github.com/Inco-fhevm/zbc-ethermint/issues/42
runs-on: ubuntu-latest
steps:
- uses: rokroskar/workflow-run-cleanup-action@master
Expand All @@ -14,6 +15,7 @@ jobs:
if: "!startsWith(github.ref, 'refs/tags/') && github.ref != 'refs/heads/main'"

deploy:
if: false # Skip, fix in ref: https://github.com/Inco-fhevm/zbc-ethermint/issues/42
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -28,7 +30,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '12.x'
node-version: "12.x"
- name: Install dependencies
working-directory: zbc-ethermint
run: npm install
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@ on:

jobs:
triage:
if: false # Skip, fix in ref: https://github.com/Inco-fhevm/zbc-ethermint/issues/42
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@v4
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
- uses: actions/labeler@v4
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
4 changes: 4 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ on:
jobs:
golangci:
name: Run golangci-lint
if: false # Skip, fix in ref: https://github.com/Inco-fhevm/zbc-ethermint/issues/42
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
Expand All @@ -35,6 +36,7 @@ jobs:
if: env.GIT_DIFF
markdown-lint:
name: Run markdown-lint
if: false # Skip, fix in ref: https://github.com/Inco-fhevm/zbc-ethermint/issues/42
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
Expand All @@ -54,6 +56,7 @@ jobs:
if: env.GIT_DIFF
python-lint:
name: Run flake8 on python integration tests
if: false # Skip, fix in ref: https://github.com/Inco-fhevm/zbc-ethermint/issues/42
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -70,6 +73,7 @@ jobs:
if: env.GIT_DIFF
gomod2nix:
name: Check gomod2nix.toml file is up to date
if: false # Skip, fix in ref: https://github.com/Inco-fhevm/zbc-ethermint/issues/42
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/markdown-links.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
name: Check Markdown links
on:
on:
pull_request:
paths:
- '**.md'
- "**.md"
push:
branches:
- main
paths:
- '**.md'
- "**.md"

jobs:
markdown-link-check:
if: false # Skip, fix in ref: https://github.com/Inco-fhevm/zbc-ethermint/issues/42
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/proto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:

jobs:
lint:
if: false # Skip, fix in ref: https://github.com/Inco-fhevm/zbc-ethermint/issues/42
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
Expand All @@ -18,6 +19,7 @@ jobs:
input: "proto"

break-check:
if: false # Skip, fix in ref: https://github.com/Inco-fhevm/zbc-ethermint/issues/42
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ jobs:
security-events: write
contents: read

if: false # Skip, fix in ref: https://github.com/Inco-fhevm/zbc-ethermint/issues/42
runs-on: ubuntu-latest
env:
GO111MODULE: on
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/semgrep.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ jobs:
# Update from: https://semgrep.dev/docs/semgrep-ci/sample-ci-configs/#github-actions
semgrep:
name: Scan
if: false # Skip, fix in ref: https://github.com/Inco-fhevm/zbc-ethermint/issues/42
runs-on: ubuntu-latest
container:
image: returntocorp/semgrep
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/super-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ on:
branches: ["main"]
jobs:
run-lint:
if: false # Skip, fix in ref: https://github.com/Inco-fhevm/zbc-ethermint/issues/42
runs-on: ubuntu-latest
steps:
- name: Checkout code
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:

jobs:
cleanup-runs:
if: false # Skip, fix in ref: https://github.com/Inco-fhevm/zbc-ethermint/issues/42
runs-on: ubuntu-latest
steps:
- uses: rokroskar/workflow-run-cleanup-action@master
Expand All @@ -16,6 +17,7 @@ jobs:
if: "!startsWith(github.ref, 'refs/tags/') && github.ref != 'refs/heads/main'"

test-unit-cover:
if: false # Skip, fix in ref: https://github.com/Inco-fhevm/zbc-ethermint/issues/42
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v4
Expand Down Expand Up @@ -51,6 +53,7 @@ jobs:
if: env.GIT_DIFF

test-importer:
if: false # Skip, fix in ref: https://github.com/Inco-fhevm/zbc-ethermint/issues/42
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
Expand Down Expand Up @@ -81,6 +84,7 @@ jobs:
if: env.GIT_DIFF

test-rpc:
if: false # Skip, fix in ref: https://github.com/Inco-fhevm/zbc-ethermint/issues/42
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
Expand Down Expand Up @@ -111,6 +115,7 @@ jobs:
if: env.GIT_DIFF

integration_tests:
if: false # Skip, fix in ref: https://github.com/Inco-fhevm/zbc-ethermint/issues/42
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -150,6 +155,7 @@ jobs:
if-no-files-found: ignore

upload-cache:
if: false # Skip, fix in ref: https://github.com/Inco-fhevm/zbc-ethermint/issues/42
if: github.event_name == 'push'
needs: ["integration_tests"]
strategy:
Expand Down

0 comments on commit 0a736a3

Please sign in to comment.