Skip to content

Commit cbeb12a

Browse files
committed
workflows: blank[manaually install crystal and compile]
1 parent ce3c26d commit cbeb12a

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

.github/workflows/blank.yml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,20 @@ on:
1010
jobs:
1111
build:
1212
runs-on: ubuntu-latest
13+
1314
steps:
1415
- uses: actions/checkout@v4
1516

16-
- name: Set up Crystal
17-
uses: crystal-lang/setup-crystal@v1
17+
- name: Install Crystal
18+
run: |
19+
sudo apt-get update
20+
sudo apt-get install -y \
21+
crystal \
22+
libssl-dev \
23+
libreadline-dev \
24+
libz-dev \
25+
libyaml-dev \
26+
libffi-dev
1827
1928
- name: Install dependencies
20-
run: shards install
29+
run: shards install

0 commit comments

Comments
 (0)