@@ -10,11 +10,11 @@ jobs:
10
10
android :
11
11
runs-on : ubuntu-latest
12
12
steps :
13
- - uses : actions/checkout@v3
13
+ - uses : actions/checkout@v4
14
14
- name : Install NDK
15
15
run : |
16
16
cd ~
17
- wget -O NDK -q https://dl.google.com/android/repository/android-ndk-r19c -linux-x86_64.zip
17
+ wget -O NDK -q https://dl.google.com/android/repository/android-ndk-r23c -linux-x86_64.zip
18
18
sudo apt install unzip -y
19
19
unzip -q NDK
20
20
ANDROID_NDK=$(pwd)/android-ndk-r19c
@@ -26,33 +26,33 @@ jobs:
26
26
./build_android.sh
27
27
./build_android_arm64.sh
28
28
- name : Upload
29
- uses : actions/upload-artifact@v3
29
+ uses : actions/upload-artifact@v4
30
30
with :
31
31
path : ./NativeLibs/yasio/plugin_android/**/*
32
32
name : plugin_android
33
33
linux :
34
34
runs-on : ubuntu-latest
35
35
steps :
36
- - uses : actions/checkout@v3
36
+ - uses : actions/checkout@v4
37
37
- name : Build
38
38
run : |
39
39
cd NativeLibs/yasio
40
40
./build_linux.sh
41
41
- name : Upload
42
- uses : actions/upload-artifact@v3
42
+ uses : actions/upload-artifact@v4
43
43
with :
44
44
path : ./NativeLibs/yasio/plugin_linux/**/*
45
45
name : plugin_linux
46
46
ios :
47
47
runs-on : macos-latest
48
-
49
48
steps :
49
+ - uses : actions/checkout@v4
50
50
- name : Build
51
51
run : |
52
52
cd NativeLibs/yasio
53
53
./build_ios.sh
54
54
- name : Upload
55
- uses : actions/upload-artifact@v3
55
+ uses : actions/upload-artifact@v4
56
56
with :
57
57
path : ./NativeLibs/yasio/plugin_ios/**/*
58
58
name : plugin_ios
@@ -61,13 +61,13 @@ jobs:
61
61
runs-on : macos-latest
62
62
63
63
steps :
64
- - uses : actions/checkout@v2
64
+ - uses : actions/checkout@v4
65
65
- name : Build
66
66
run : |
67
67
cd NativeLibs/yasio
68
68
./build_osx.sh
69
69
- name : Upload
70
- uses : actions/upload-artifact@v3
70
+ uses : actions/upload-artifact@v4
71
71
with :
72
72
path : ./NativeLibs/yasio/plugin_osx/**/*
73
73
name : plugin_osx
@@ -76,18 +76,18 @@ jobs:
76
76
runs-on : windows-latest
77
77
78
78
steps :
79
- - uses : actions/checkout@v3
79
+ - uses : actions/checkout@v4
80
80
81
81
- name : Insatll MSVC
82
- uses : microsoft/setup-msbuild@v1.3
82
+ uses : microsoft/setup-msbuild@v2
83
83
84
84
- name : Build
85
85
run : |
86
86
cd NativeLibs/yasio
87
87
.\build_win.bat
88
88
.\build_uwp.bat
89
89
- name : Upload
90
- uses : actions/upload-artifact@v3
90
+ uses : actions/upload-artifact@v4
91
91
with :
92
92
path : ./NativeLibs/yasio/plugin_win/**/*
93
93
name : plugin_win
96
96
runs-on : ubuntu-latest
97
97
steps :
98
98
- name : Download a Build Artifact
99
- uses : actions/download-artifact@v3
99
+ uses : actions/download-artifact@v4
100
100
- name : Display structure of downloaded files
101
101
run : ls -R
0 commit comments