Skip to content

Commit

Permalink
remove build job from test workflow (#9)
Browse files Browse the repository at this point in the history
* remove build job from test workflow

It's not actually helping cache performance

* remove dependency on removed job
  • Loading branch information
hallettj authored Mar 25, 2024
1 parent 2bcbfd3 commit fccc596
Showing 1 changed file with 0 additions and 22 deletions.
22 changes: 0 additions & 22 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,31 +7,9 @@ on:
- 'v*'
pull_request:

# The build job caches build artifacts which avoids duplicating work between the
# unit and API tests.
jobs:
build:
name: Build the connector
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3

- name: Install Nix ❄
uses: DeterminateSystems/nix-installer-action@v4

- name: Link Cachix 🔌
uses: cachix/cachix-action@v12
with:
name: '${{ vars.CACHIX_CACHE_NAME }}'
authToken: '${{ secrets.CACHIX_CACHE_AUTH_TOKEN }}'

- name: build the crate 🔨
run: nix build --print-build-logs

unit_tests:
name: Unit Tests
needs: build
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
Expand Down

0 comments on commit fccc596

Please sign in to comment.