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

Adopt vendoring #20

Merged
merged 6 commits into from
Sep 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
4 changes: 3 additions & 1 deletion .ameba.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ Style/NegatedConditionsInUnless:
Naming/BlockParameterName:
Enabled: false

# exclude all files in vendor/cache
Globs:
- "**/*.cr"
- "!lib"
- "!spec/acceptance/acceptance.cr"
- "!vendor"
- "!tmp"
2 changes: 1 addition & 1 deletion .github/workflows/acceptance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
crystal: ${{ steps.crystal-version.outputs.crystal }}

- name: bootstrap
run: script/bootstrap
run: script/bootstrap --ci

- name: acceptance
run: script/acceptance
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
crystal: ${{ steps.crystal-version.outputs.crystal }}

- name: bootstrap
run: script/bootstrap
run: script/bootstrap --ci

- name: lint
run: script/lint
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,8 @@ jobs:
with:
crystal: ${{ steps.crystal-version.outputs.crystal }}

- name: bootstrap
run: script/bootstrap --ci

- name: test
run: script/test
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,16 @@
.cache/shards/*
tmp/
bin/
!vendor/bin/
!vendor/darwin_arm64/bin/
!vendor/darwin_x86_64/bin/
!vendor/linux_x86_64/bin/
.shards/
*.dwarf
dist/
vendor/shards/install
vendor/.cache


# non-critical vendored crystal files
lib/**/.github/
Expand Down
15 changes: 0 additions & 15 deletions lib/.shards.info

This file was deleted.

7 changes: 0 additions & 7 deletions lib/ameba/.ameba.yml

This file was deleted.

4 changes: 0 additions & 4 deletions lib/ameba/.dockerignore

This file was deleted.

7 changes: 0 additions & 7 deletions lib/ameba/.editorconfig

This file was deleted.

9 changes: 0 additions & 9 deletions lib/ameba/.gitignore

This file was deleted.

14 changes: 0 additions & 14 deletions lib/ameba/Dockerfile

This file was deleted.

21 changes: 0 additions & 21 deletions lib/ameba/LICENSE

This file was deleted.

34 changes: 0 additions & 34 deletions lib/ameba/Makefile

This file was deleted.

Loading
Loading