Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/actions/setup-testdb/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ runs:
working-directory: ${{ github.action_path }}/../setup-postgres

- name: Prepare Test Schema
run: go -C integration_tests tool preparetest
run: |
go -C $(go mod download -json github.com/smartcontractkit/chainlink/v2@latest | jq -r '.Dir') run ./core/store/cmd/preparetest
shell: bash
env:
CL_DATABASE_URL: postgresql://postgres:postgres@localhost:5432/chainlink_test?sslmode=disable
4 changes: 0 additions & 4 deletions .github/scripts/affected-projects.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,6 @@ for target in "${targets[@]}"; do
# Add --head=HEAD to ensure consistency (compared against --base)
projects_with_target=$(./nx show projects --affected -t $target --json --base=$base --head=HEAD)

if [ "$target" == "test" ]; then
projects_with_target=$(echo $projects_with_target | jq 'del(.[] | select(. == "integration_tests"))')
fi

json_output=$(echo "$json_output" | jq --argjson target_projects "$projects_with_target" --arg target "$target" \
'. + {"projects_with_\($target)": $target_projects}')

Expand Down
5 changes: 0 additions & 5 deletions .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -194,10 +194,6 @@ jobs:
if: matrix.projects != 'solana'
run: ./nx run ${{ matrix.projects }}:race


integration-tests:
uses: ./.github/workflows/integration-tests.yml

tidy-and-generate:
needs: affected
if: ${{fromJson(needs.affected.outputs.nx).run_checks}}
Expand Down Expand Up @@ -312,7 +308,6 @@ jobs:
- test
- race
- tidy-and-generate
- integration-tests
- modgraph
if: always()
steps:
Expand Down
48 changes: 0 additions & 48 deletions .github/workflows/integration-tests.yml

This file was deleted.

3 changes: 0 additions & 3 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -171,9 +171,6 @@ linters:
- gosec
path: test
text: "^G404:"
- linters:
- depguard
path: integration_tests
paths:
- third_party$
- builtin$
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ Run a task for the affected projects only:
Update libs for chain capabilities:

```sh
nx run-many -t update-libs -p aptos,solana,evm,stellar --args='--version=v1.2.3' && nx run integration_tests:tidy
nx run-many -t update-libs -p aptos,solana,evm,stellar --args='--version=v1.2.3'
```

[More info on Nx Tasks](https://nx.dev/features/run-tasks).
Loading
Loading