Skip to content

Commit f74b230

Browse files
committed
wip
1 parent 6e9130c commit f74b230

8 files changed

Lines changed: 2 additions & 54 deletions

File tree

.github/modify-pantry/action.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
runs:
22
using: composite
33
steps:
4-
- run: pkgx --sync #FIXME bug where shebangs don’t cause an auto-sync
5-
shell: bash
64
- uses: fregante/setup-git-user@v2
75
- run: git update-ref refs/remotes/origin/main HEAD
86
working-directory: ${{ github.workspace }}

.github/workflows/ci.cli.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,6 @@ jobs:
3737
- uses: actions/checkout@v4
3838
- uses: pkgxdev/setup@v4
3939

40-
# otherwise, we're getting some weird race conditions on CI
41-
- run: pkgx --sync
42-
4340
- run: bin/bk build ${{matrix.pkg}}
4441
- run: bin/bk test ${{matrix.pkg}}
4542
- run: bin/bk audit ${{matrix.pkg}}
@@ -74,7 +71,6 @@ jobs:
7471
steps:
7572
- uses: actions/checkout@v4
7673
- uses: pkgxdev/setup@v4
77-
- run: pkgx --sync # FIXME PKGX_PANTRY_PATH causes auto sync to fail
7874
- name: build
7975
run: |
8076
set +e

audit/action.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,6 @@ inputs:
1414
runs:
1515
using: composite
1616
steps:
17-
- run: |
18-
if ! pkgx --sync; then
19-
echo "::error::you must use: pkgxdev/setup before using this action"
20-
exit 1
21-
fi
22-
shell: bash
23-
2417
- name: fetch deno deps
2518
shell: bash
2619
run: |

build/action.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,6 @@ outputs:
3636
runs:
3737
using: composite
3838
steps:
39-
- name: prep
40-
run: |
41-
if ! pkgx --sync; then
42-
echo "::error::you must use: pkgxdev/setup before using this action"
43-
exit 1
44-
fi
45-
shell: bash
46-
4739
- name: fetch deno deps
4840
shell: bash
4941
run: |

download-build-artifact/action.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,6 @@ outputs:
4141
runs:
4242
using: composite
4343
steps:
44-
- run: |
45-
if ! pkgx --sync; then
46-
echo "::error::you must use: pkgxdev/setup before using this action"
47-
exit 1
48-
fi
49-
shell: bash
50-
5144
- name: fetch deno deps
5245
shell: bash
5346
run: |

id/action.yml

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
name:
2-
pkgx/brewkit/id
3-
description:
4-
resolve a specific version, including the raw version and tag (if available)
1+
name: pkgx/brewkit/id
2+
description: resolve a specific version, including the raw version and tag (if available)
53

64
inputs:
75
pkg:
@@ -28,14 +26,6 @@ outputs:
2826
runs:
2927
using: composite
3028
steps:
31-
- name: prep
32-
run: |
33-
if ! pkgx --sync; then
34-
echo "::error::you must use: pkgxdev/setup before using this action"
35-
exit 1
36-
fi
37-
shell: bash
38-
3929
- name: fetch deno deps
4030
run: |
4131
echo "::group::fetch deno deps"

test/action.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,6 @@ inputs:
1212
runs:
1313
using: composite
1414
steps:
15-
- run: |
16-
if ! pkgx --sync; then
17-
echo "::error::you must use: pkgxdev/setup before using this action"
18-
exit 1
19-
fi
20-
shell: bash
21-
2215
- name: fetch deno deps
2316
shell: bash
2417
run: |

upload-build-artifact/action.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,6 @@ inputs:
1313
runs:
1414
using: composite
1515
steps:
16-
- run: |
17-
if ! pkgx --sync; then
18-
echo "::error::you must use: pkgxdev/setup before using this action"
19-
exit 1
20-
fi
21-
shell: bash
22-
2316
- name: fetch deno deps
2417
shell: bash
2518
run: |

0 commit comments

Comments
 (0)