Skip to content

Commit c4d898e

Browse files
authored
Merge pull request #20 from octokit-cr/adopt-vendoring
Adopt vendoring
2 parents bed54ab + 2096d04 commit c4d898e

File tree

223 files changed

+348
-15254
lines changed

Some content is hidden

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

223 files changed

+348
-15254
lines changed

.ameba.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@ Style/NegatedConditionsInUnless:
2222
Naming/BlockParameterName:
2323
Enabled: false
2424

25+
# exclude all files in vendor/cache
2526
Globs:
2627
- "**/*.cr"
27-
- "!lib"
2828
- "!spec/acceptance/acceptance.cr"
29+
- "!vendor"
30+
- "!tmp"

.github/workflows/acceptance.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
crystal: ${{ steps.crystal-version.outputs.crystal }}
2929

3030
- name: bootstrap
31-
run: script/bootstrap
31+
run: script/bootstrap --ci
3232

3333
- name: acceptance
3434
run: script/acceptance

.github/workflows/lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
crystal: ${{ steps.crystal-version.outputs.crystal }}
2929

3030
- name: bootstrap
31-
run: script/bootstrap
31+
run: script/bootstrap --ci
3232

3333
- name: lint
3434
run: script/lint

.github/workflows/test.yml

+3
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,8 @@ jobs:
2727
with:
2828
crystal: ${{ steps.crystal-version.outputs.crystal }}
2929

30+
- name: bootstrap
31+
run: script/bootstrap --ci
32+
3033
- name: test
3134
run: script/test

.gitignore

+7
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,16 @@
22
.cache/shards/*
33
tmp/
44
bin/
5+
!vendor/bin/
6+
!vendor/darwin_arm64/bin/
7+
!vendor/darwin_x86_64/bin/
8+
!vendor/linux_x86_64/bin/
59
.shards/
610
*.dwarf
711
dist/
12+
vendor/shards/install
13+
vendor/.cache
14+
815

916
# non-critical vendored crystal files
1017
lib/**/.github/

lib/.shards.info

-15
This file was deleted.

lib/ameba/.ameba.yml

-7
This file was deleted.

lib/ameba/.dockerignore

-4
This file was deleted.

lib/ameba/.editorconfig

-7
This file was deleted.

lib/ameba/.gitignore

-9
This file was deleted.

lib/ameba/Dockerfile

-14
This file was deleted.

lib/ameba/LICENSE

-21
This file was deleted.

lib/ameba/Makefile

-34
This file was deleted.

0 commit comments

Comments
 (0)