Skip to content

Commit 69311d9

Browse files
authored
Merge branch 'develop' into rpatel/mcp
2 parents e38173e + 78a70b9 commit 69311d9

File tree

89 files changed

+1826
-1103
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

89 files changed

+1826
-1103
lines changed

.circleci/collect.sh

Lines changed: 0 additions & 4 deletions
This file was deleted.

.circleci/config.yml

Lines changed: 0 additions & 315 deletions
This file was deleted.

.github/actions/run_ats/action.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ inputs:
2121
default: ''
2222
codecov_flags:
2323
description: 'Flags for codecov upload'
24-
required: false
25-
default: 'smart-tests'
24+
required: true
2625

2726
runs:
2827
using: "composite"
@@ -39,12 +38,11 @@ runs:
3938
run: |
4039
uv run codecovcli create-commit -t ${{ inputs.codecov_token }}
4140
uv run codecovcli create-report -t ${{ inputs.codecov_token }}
42-
bash ./.circleci/ats.sh
41+
bash .github/actions/run_ats/ats.sh
4342
4443
- name: Run tests
4544
shell: bash
4645
run: |
47-
echo "pwd: $(pwd)" # FIXME: for debugging
4846
TESTS_TO_RUN=$(cat codecov_ats/tests_to_run.txt)
4947
if [ -z "$TESTS_TO_RUN" ]; then
5048
echo "No tests to run, skipping..."
@@ -56,7 +54,6 @@ runs:
5654
-vv \
5755
--cov \
5856
--cov-append \
59-
--cov-report=xml \
6057
${{ inputs.collect_args }}
6158
6259
- uses: ./.github/actions/report
File renamed without changes.
Lines changed: 4 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
# yaml-language-server: $schema=https://json.schemastore.org/github-action.json
2-
name: "Setup Graph Sitter"
3-
description: "Setup Graph Sitter"
1+
name: "Setup Environment"
2+
description: "Setup Environment"
43
inputs:
54
python-version:
65
required: false
@@ -9,11 +8,6 @@ inputs:
98
runs:
109
using: "composite"
1110
steps:
12-
# - name: ccache
13-
# uses: hendrikmuhs/[email protected]
14-
# with:
15-
# create-symlink: true
16-
# key: ${{ runner.os }}
1711
- name: Install UV
1812
uses: astral-sh/[email protected]
1913
id: setup-uv
@@ -23,19 +17,14 @@ runs:
2317
python-version: ${{ inputs.python-version }}
2418
version: '0.5.24'
2519
cache-suffix: ${{inputs.python-version}}
20+
2621
- name: Install dependencies
2722
shell: bash
2823
run: |
2924
uv sync --frozen --all-extras
25+
3026
- name: Install codecov
3127
shell: bash
3228
run: |
3329
uv tool install codecov-cli --python 3.10
3430
uv tool update-shell
35-
# - name: Configure AWS Credentials
36-
# if: env.skip == '1'
37-
# uses: aws-actions/configure-aws-credentials@v2
38-
# with:
39-
# aws-access-key-id: ${{ inputs.aws-access-key-id }}
40-
# aws-secret-access-key: ${{ inputs.aws-secret-access-key }}
41-
# aws-region: us-west-1

0 commit comments

Comments
 (0)