File tree 3 files changed +9
-6
lines changed 3 files changed +9
-6
lines changed Original file line number Diff line number Diff line change
1
+ choco install make
Original file line number Diff line number Diff line change
1
+ sudo apt-get update
2
+ sudo apt-get install build-essential
Original file line number Diff line number Diff line change @@ -17,17 +17,17 @@ jobs:
17
17
- linux/arm64
18
18
- linux/amd64
19
19
- windows/amd64
20
+ include :
21
+ - os : windows-latest
22
+ script_name : .\dependencies.cmd
23
+ - os : ubuntu-latest
24
+ script_name : ./dependencies.sh
20
25
steps :
21
26
- name : Checkout Repo
22
27
uses : actions/checkout@v3
23
28
- name : Dependencies
24
29
id : dependencies
25
- run : |
26
- if [ ${{ runner.os }} == 'Linux' ]; then
27
- sudo apt-get update
28
- sudo apt-get install build-essential
29
- elif [ ${{ runner.os }} == 'Windows' ]; then
30
- choco install make
30
+ run : ${{ matrix.script_name }}
31
31
- name : Build
32
32
id : build
33
33
run : |
You can’t perform that action at this time.
0 commit comments