You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: .github/workflows/build.yml
+4-11
Original file line number
Diff line number
Diff line change
@@ -15,13 +15,6 @@ jobs:
15
15
CC: gcc
16
16
CXX: g++
17
17
DEBIAN_BUILD: true
18
-
#- os: ubuntu-latest
19
-
#CC: gcc
20
-
#CXX: g++
21
-
#- os: ubuntu-latest
22
-
#CC: clang
23
-
#CXX: clang++
24
-
#- os: macos-10.15
25
18
steps:
26
19
- name: Install needed ubuntu depends
27
20
env:
@@ -31,13 +24,13 @@ jobs:
31
24
if [[ $DEBIAN_BUILD == true ]]; then sudo apt-get update; fi
32
25
if [[ $DEBIAN_BUILD == true ]]; then sudo apt-get install fakeroot; fi
33
26
- name: Checkout Kodi repo
34
-
uses: actions/checkout@v2
27
+
uses: actions/checkout@v4
35
28
with:
36
29
repository: xbmc/xbmc
37
30
ref: Nexus
38
31
path: xbmc
39
-
- name: Checkout pvr.stalker repo
40
-
uses: actions/checkout@v2
32
+
- name: Checkout add-on repo
33
+
uses: actions/checkout@v4
41
34
with:
42
35
path: ${{ env.app_id }}
43
36
- name: Configure
@@ -48,7 +41,7 @@ jobs:
48
41
run: |
49
42
if [[ $DEBIAN_BUILD != true ]]; then cd ${app_id} && mkdir -p build && cd build; fi
50
43
if [[ $DEBIAN_BUILD != true ]]; then cmake -DADDONS_TO_BUILD=${app_id} -DADDON_SRC_PREFIX=${{ github.workspace }} -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=${{ github.workspace }}/xbmc/addons -DPACKAGE_ZIP=1 ${{ github.workspace }}/xbmc/cmake/addons; fi
51
-
if [[ $DEBIAN_BUILD == true ]]; then wget https://raw.githubusercontent.com/xbmc/xbmc/master/xbmc/addons/kodi-dev-kit/tools/debian-addon-package-test.sh && chmod +x ./debian-addon-package-test.sh; fi
44
+
if [[ $DEBIAN_BUILD == true ]]; then wget https://raw.githubusercontent.com/xbmc/xbmc/Nexus/xbmc/addons/kodi-dev-kit/tools/debian-addon-package-test.sh && chmod +x ./debian-addon-package-test.sh; fi
52
45
if [[ $DEBIAN_BUILD == true ]]; then sudo apt-get build-dep ${{ github.workspace }}/${app_id}; fi
0 commit comments