Skip to content

Commit ab52ab0

Browse files
Removing some noisy jobs
1 parent 77f82c1 commit ab52ab0

File tree

2 files changed

+0
-105
lines changed

2 files changed

+0
-105
lines changed

.github/workflows/coder_cache.yaml

Lines changed: 0 additions & 53 deletions
Original file line numberDiff line numberDiff line change
@@ -44,15 +44,6 @@ jobs:
4444
run: |
4545
echo "${{ toJSON(steps.filter )}}"
4646
47-
check-enterprise-imports:
48-
name: check/enterprise-imports
49-
timeout-minutes: 5
50-
runs-on: ubuntu-latest
51-
steps:
52-
- uses: actions/checkout@v3
53-
- name: Check imports of enterprise code
54-
run: ./scripts/check_enterprise_imports.sh
55-
5647
gen:
5748
name: "style/gen"
5849
timeout-minutes: 8
@@ -156,47 +147,3 @@ jobs:
156147
token: ${{ secrets.CODECOV_TOKEN }}
157148
files: ./gotests.coverage
158149
flags: unittest-go-${{ matrix.os }}
159-
160-
test-go-postgres:
161-
name: "test/go/postgres"
162-
runs-on: ${{ github.repository_owner == 'coder' && 'ubuntu-latest-16-cores' || 'ubuntu-latest' }}
163-
# This timeout must be greater than the timeout set by `go test` in
164-
# `make test-postgres` to ensure we receive a trace of running
165-
# goroutines. Setting this to the timeout +5m should work quite well
166-
# even if some of the preceding steps are slow.
167-
timeout-minutes: 25
168-
steps:
169-
- uses: actions/checkout@v3
170-
171-
- uses: actions/setup-go@v3
172-
with:
173-
cache: true
174-
go-version: "~1.19"
175-
176-
- name: Install gotestsum
177-
uses: jaxxstorm/action-install-gh-release@v1.7.1
178-
env:
179-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
180-
with:
181-
repo: gotestyourself/gotestsum
182-
tag: v1.8.2
183-
184-
- uses: hashicorp/setup-terraform@v2
185-
with:
186-
terraform_version: 1.1.9
187-
terraform_wrapper: false
188-
189-
- name: Test with PostgreSQL Database
190-
run: make test-postgres
191-
192-
- uses: codecov/codecov-action@v3
193-
# This action has a tendency to error out unexpectedly, it has
194-
# the `fail_ci_if_error` option that defaults to `false`, but
195-
# that is no guarantee, see:
196-
# https://github.com/codecov/codecov-action/issues/788
197-
continue-on-error: true
198-
if: github.actor != 'dependabot[bot]' && !github.event.pull_request.head.repo.fork
199-
with:
200-
token: ${{ secrets.CODECOV_TOKEN }}
201-
files: ./gotests.coverage
202-
flags: unittest-go-postgres-${{ matrix.os }}

.github/workflows/coder_nocache.yaml

Lines changed: 0 additions & 52 deletions
Original file line numberDiff line numberDiff line change
@@ -44,15 +44,6 @@ jobs:
4444
run: |
4545
echo "${{ toJSON(steps.filter )}}"
4646
47-
check-enterprise-imports:
48-
name: check/enterprise-imports
49-
timeout-minutes: 5
50-
runs-on: ubuntu-latest
51-
steps:
52-
- uses: actions/checkout@v3
53-
- name: Check imports of enterprise code
54-
run: ./scripts/check_enterprise_imports.sh
55-
5647
gen:
5748
name: "style/gen"
5849
timeout-minutes: 8
@@ -154,46 +145,3 @@ jobs:
154145
token: ${{ secrets.CODECOV_TOKEN }}
155146
files: ./gotests.coverage
156147
flags: unittest-go-${{ matrix.os }}
157-
158-
test-go-postgres:
159-
name: "test/go/postgres"
160-
runs-on: ${{ github.repository_owner == 'coder' && 'ubuntu-latest-16-cores' || 'ubuntu-latest' }}
161-
# This timeout must be greater than the timeout set by `go test` in
162-
# `make test-postgres` to ensure we receive a trace of running
163-
# goroutines. Setting this to the timeout +5m should work quite well
164-
# even if some of the preceding steps are slow.
165-
timeout-minutes: 25
166-
steps:
167-
- uses: actions/checkout@v3
168-
169-
- uses: actions/setup-go@v3
170-
with:
171-
go-version: "~1.19"
172-
173-
- name: Install gotestsum
174-
uses: jaxxstorm/action-install-gh-release@v1.7.1
175-
env:
176-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
177-
with:
178-
repo: gotestyourself/gotestsum
179-
tag: v1.8.2
180-
181-
- uses: hashicorp/setup-terraform@v2
182-
with:
183-
terraform_version: 1.1.9
184-
terraform_wrapper: false
185-
186-
- name: Test with PostgreSQL Database
187-
run: make test-postgres
188-
189-
- uses: codecov/codecov-action@v3
190-
# This action has a tendency to error out unexpectedly, it has
191-
# the `fail_ci_if_error` option that defaults to `false`, but
192-
# that is no guarantee, see:
193-
# https://github.com/codecov/codecov-action/issues/788
194-
continue-on-error: true
195-
if: github.actor != 'dependabot[bot]' && !github.event.pull_request.head.repo.fork
196-
with:
197-
token: ${{ secrets.CODECOV_TOKEN }}
198-
files: ./gotests.coverage
199-
flags: unittest-go-postgres-${{ matrix.os }}

0 commit comments

Comments
 (0)