Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove Depandabot Auto Merges and CircleCI References #4660

Merged
merged 2 commits into from
Oct 24, 2024
Merged
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
829 changes: 0 additions & 829 deletions .circleci/config.yml

This file was deleted.

19 changes: 0 additions & 19 deletions .circleci/trigger_pipeline.sh

This file was deleted.

39 changes: 23 additions & 16 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,25 @@
version: 2
updates:
- package-ecosystem: "gomod"
directory: "/"
schedule:
interval: daily
labels:
- "lang/go"
- "th/dependencies"
open-pull-requests-limit: 1
- package-ecosystem: "pip"
directory: "/integration/"
schedule:
interval: daily
labels:
- "lang/python"
- "th/dependencies"
open-pull-requests-limit: 1
- package-ecosystem: "gomod"
directory: "/"
schedule:
interval: "daily"
labels:
- "lang/go"
- "dependabot/version-updates"
open-pull-requests-limit: 1
- package-ecosystem: "pip"
directory: "/integration/"
schedule:
interval: "daily"
labels:
- "lang/python"
- "dependabot/version-updates"
open-pull-requests-limit: 1
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
labels:
- "lang/github-actions"
- "dependabot/version-updates"
57 changes: 0 additions & 57 deletions .github/workflows/circleci.yml

This file was deleted.

39 changes: 0 additions & 39 deletions .github/workflows/dependabot-auto-merge.yml

This file was deleted.

58 changes: 0 additions & 58 deletions .github/workflows/dependabot.yml

This file was deleted.

17 changes: 3 additions & 14 deletions .github/workflows/testcontainers-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,23 +13,12 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

# Detect Go version from test_integration/go.mod
- name: Detect Go version from test_integration/go.mod
id: detect-test-go-version
shell: bash
run: |
set -euo pipefail
go_version=$(grep '^go ' test_integration/go.mod | awk '{print $2}')
echo "Go version detected for integration tests: $go_version"
echo "GOLANG_TEST_VERSION=$go_version" >> $GITHUB_ENV

- name: Set up Go
- name: Install Golang
uses: actions/setup-go@v5
with:
go-version: ${{ env.GOLANG_TEST_VERSION }}
cache: true
go-version-file: go.work
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nice!


- name: Run Go tests in integration test directory
shell: bash
Expand Down
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,6 @@ The build parses the OpenAPI annotations as well as the markdown files in `docs/
* `docs/swagger.json`
* `docs/swagger.yaml`

Note that the CI pipeline will open and automatically merge a pull request titled `[circleci] Build swagger reference - this is an automatic commit ...` containing *only* the updated spec files.

### Python Libraries

We ship two Python Bacalhau libraries:
Expand Down
Loading