Skip to content

Commit b1da0cc

Browse files
committed
Rename script
1 parent a1530b8 commit b1da0cc

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/actions/setup/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ runs:
2020
- name: Set Environment Variables
2121
shell: bash
2222
run: |
23-
source make
23+
source ./make.sh
2424
echo "RUST_TOOLCHAIN_BUILD=${RUST_TOOLCHAIN_BUILD}" >> $GITHUB_ENV
2525
echo "RUST_TOOLCHAIN_FORMAT=${RUST_TOOLCHAIN_FORMAT}" >> $GITHUB_ENV
2626
echo "RUST_TOOLCHAIN_LINT=${RUST_TOOLCHAIN_LINT}" >> $GITHUB_ENV

.github/workflows/main.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -40,19 +40,19 @@ jobs:
4040
components: hack, miri
4141

4242
- name: cargo-clippy
43-
run: ./make clippy
43+
run: ./make.sh clippy
4444

4545
- name: cargo-fmt
46-
run: ./make format
46+
run: ./make.sh format
4747

4848
- name: cargo-doc
49-
run: ./make doc
49+
run: ./make.sh doc
5050

5151
- name: cargo-hack
52-
run: ./make hack
52+
run: ./make.sh hack
5353

5454
- name: cargo-miri
55-
run: ./make miri
55+
run: ./make.sh miri
5656

5757
build:
5858
name: Build
@@ -69,10 +69,10 @@ jobs:
6969
solana: true
7070

7171
- name: cargo-build
72-
run: ./make build
72+
run: ./make.sh build
7373

7474
- name: cargo-build-sbf
75-
run: ./make build-sbf
75+
run: ./make.sh build-sbf
7676

7777
test:
7878
name: Test
@@ -89,4 +89,4 @@ jobs:
8989
solana: true
9090

9191
- name: cargo-test
92-
run: ./make test
92+
run: ./make.sh test

make renamed to make.sh

File renamed without changes.

0 commit comments

Comments
 (0)