Skip to content

Commit

Permalink
DELETEME: disable every build but emu
Browse files Browse the repository at this point in the history
  • Loading branch information
vicentebolea committed Mar 20, 2023
1 parent c4fd1c8 commit 83dd606
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/everything.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:

linux:
needs: [format, git_checks]
if: needs.git_checks.outputs.num_code_changes > 0
if: false #needs.git_checks.outputs.num_code_changes > 0

runs-on: ubuntu-latest
container:
Expand Down Expand Up @@ -201,7 +201,7 @@ jobs:

macos:
needs: [format, git_checks]
if: needs.git_checks.outputs.num_code_changes > 0
if: false #needs.git_checks.outputs.num_code_changes > 0

runs-on: ${{ matrix.image }}
env:
Expand Down Expand Up @@ -246,7 +246,7 @@ jobs:

windows:
needs: [format, git_checks]
if: needs.git_checks.outputs.num_code_changes > 0
if: false #needs.git_checks.outputs.num_code_changes > 0

runs-on: ${{ matrix.image }}
env:
Expand Down Expand Up @@ -299,7 +299,7 @@ jobs:

docker:
needs: [format, git_checks]
if: needs.git_checks.outputs.num_code_changes > 0
if: false #needs.git_checks.outputs.num_code_changes > 0

runs-on: ubuntu-latest
strategy:
Expand Down Expand Up @@ -364,7 +364,7 @@ jobs:
# standard container job.
contract:
needs: [format, git_checks, docker]
if: needs.git_checks.outputs.num_code_changes > 0
if: false # needs.git_checks.outputs.num_code_changes > 0

runs-on: ubuntu-latest
strategy:
Expand Down

0 comments on commit 83dd606

Please sign in to comment.