Skip to content

Commit

Permalink
ci: run most tests all the time, again
Browse files Browse the repository at this point in the history
  • Loading branch information
thehowl committed Dec 20, 2024
1 parent f664c62 commit f40976f
Show file tree
Hide file tree
Showing 9 changed files with 7 additions and 34 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/autocounterd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@ on:
push:
branches:
- "master"
paths:
- misc/autocounterd
- misc/loop
- .github/workflows/autocounterd.yml

permissions:
contents: read
Expand Down
7 changes: 1 addition & 6 deletions .github/workflows/benchmark-master-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,6 @@ on:
push:
branches:
- master
paths:
- contribs/**/*.go
- gno.land/**/*.go
- gnovm/**/*.go
- tm2/**/*.go

permissions:
# deployments permission to deploy GitHub pages website
Expand All @@ -22,7 +17,7 @@ env:
jobs:
benchmarks:
if: ${{ github.repository == 'gnolang/gno' }}
runs-on: [ self-hosted, Linux, X64, benchmarks ]
runs-on: [self-hosted, Linux, X64, benchmarks]
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/contribs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ on:
branches:
- master
pull_request:
paths:
- contribs/**
workflow_dispatch:

jobs:
Expand All @@ -26,14 +24,14 @@ jobs:
run: |
contribs_programs=$(ls -d contribs/*/ | cut -d/ -f2)
versions_map="{"
for p in $contribs_programs; do
# Fetch the go version of the contribs entry, and save it
# to a versions map we can reference later in the workflow
go_version=$(grep "^go [0-9]" contribs/$p/go.mod | cut -d ' ' -f2)
versions_map="$versions_map\"$p\":\"$go_version\","
done
# Close out the JSON
versions_map="${versions_map%,}"
versions_map="$versions_map}"
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/docs-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ on:
branches:
- master
pull_request:
paths:
- "docs/**"

jobs:
build:
Expand Down
5 changes: 1 addition & 4 deletions .github/workflows/examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@ on:
branches:
- master
pull_request:
paths:
- gnovm/**/*.gno
- examples/**/*.gno

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
Expand Down Expand Up @@ -80,7 +77,7 @@ jobs:
strategy:
fail-fast: false
matrix:
go-version: [ "1.22.x" ]
go-version: ["1.22.x"]
# unittests: TODO: matrix with contracts
runs-on: ubuntu-latest
timeout-minutes: 10
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/gnovm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@ on:
branches:
- master
pull_request:
paths:
- gnovm/**
- tm2/** # GnoVM has a dependency on TM2 types
workflow_dispatch:

jobs:
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/misc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ on:
branches:
- master
pull_request:
paths:
- misc/**
workflow_dispatch:

jobs:
Expand Down
10 changes: 3 additions & 7 deletions .github/workflows/mod-tidy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,10 @@ on:
branches:
- master
paths:
- '**/*.go'
- 'go.mod'
- 'go.sum'
- "**/*.go"
- "go.mod"
- "go.sum"
pull_request:
paths:
- '**/*.go'
- 'go.mod'
- 'go.sum'
workflow_dispatch:

jobs:
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/tm2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ on:
branches:
- master
pull_request:
paths:
- tm2/**
workflow_dispatch:

jobs:
Expand Down

0 comments on commit f40976f

Please sign in to comment.