mirror of
https://github.com/optim-enterprises-bv/nDPId.git
synced 2025-10-29 09:22:23 +00:00
4
.github/workflows/build-archlinux.yml
vendored
4
.github/workflows/build-archlinux.yml
vendored
@@ -18,7 +18,7 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
CMAKE_C_FLAGS: -Werror
|
CMAKE_C_FLAGS: -Werror
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
submodules: false
|
submodules: false
|
||||||
fetch-depth: 1
|
fetch-depth: 1
|
||||||
@@ -32,7 +32,7 @@ jobs:
|
|||||||
target: 'pkgbuild'
|
target: 'pkgbuild'
|
||||||
pkgname: 'packages/ndpid-testing'
|
pkgname: 'packages/ndpid-testing'
|
||||||
- name: Upload PKG
|
- name: Upload PKG
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: nDPId-archlinux-packages
|
name: nDPId-archlinux-packages
|
||||||
path: packages/ndpid-testing/*.pkg.tar.zst
|
path: packages/ndpid-testing/*.pkg.tar.zst
|
||||||
|
|||||||
6
.github/workflows/build-centos.yml
vendored
6
.github/workflows/build-centos.yml
vendored
@@ -17,7 +17,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container: 'centos:8'
|
container: 'centos:8'
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
submodules: false
|
submodules: false
|
||||||
fetch-depth: 1
|
fetch-depth: 1
|
||||||
@@ -45,12 +45,12 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
cd ./build && cpack -G RPM && cd ..
|
cd ./build && cpack -G RPM && cd ..
|
||||||
- name: Upload RPM
|
- name: Upload RPM
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: nDPId-centos-packages
|
name: nDPId-centos-packages
|
||||||
path: build/*.rpm
|
path: build/*.rpm
|
||||||
- name: Upload on Failure
|
- name: Upload on Failure
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v4
|
||||||
if: failure()
|
if: failure()
|
||||||
with:
|
with:
|
||||||
name: autoconf-config-log
|
name: autoconf-config-log
|
||||||
|
|||||||
7
.github/workflows/build-openwrt.yml
vendored
7
.github/workflows/build-openwrt.yml
vendored
@@ -26,9 +26,6 @@ jobs:
|
|||||||
- arch: mips_24kc
|
- arch: mips_24kc
|
||||||
target: ath79-generic
|
target: ath79-generic
|
||||||
|
|
||||||
- arch: mipsel_24kc
|
|
||||||
target: mt7621
|
|
||||||
|
|
||||||
- arch: powerpc_464fp
|
- arch: powerpc_464fp
|
||||||
target: apm821xx-nand
|
target: apm821xx-nand
|
||||||
|
|
||||||
@@ -45,7 +42,7 @@ jobs:
|
|||||||
target: x86-64
|
target: x86-64
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
submodules: false
|
submodules: false
|
||||||
fetch-depth: 1
|
fetch-depth: 1
|
||||||
@@ -60,7 +57,7 @@ jobs:
|
|||||||
V: s
|
V: s
|
||||||
|
|
||||||
- name: Store packages
|
- name: Store packages
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: nDPId-${{ matrix.arch}}-${{ matrix.target }}
|
name: nDPId-${{ matrix.arch}}-${{ matrix.target }}
|
||||||
path: bin/packages/${{ matrix.arch }}/ndpid_openwrt_packages_ci/*.ipk
|
path: bin/packages/${{ matrix.arch }}/ndpid_openwrt_packages_ci/*.ipk
|
||||||
|
|||||||
4
.github/workflows/build.yml
vendored
4
.github/workflows/build.yml
vendored
@@ -148,7 +148,7 @@ jobs:
|
|||||||
echo '|---------------------------------------'
|
echo '|---------------------------------------'
|
||||||
echo '| UPLOAD...: ${{ matrix.upload }}'
|
echo '| UPLOAD...: ${{ matrix.upload }}'
|
||||||
echo '----------------------------------------'
|
echo '----------------------------------------'
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
submodules: false
|
submodules: false
|
||||||
fetch-depth: 1
|
fetch-depth: 1
|
||||||
@@ -225,7 +225,7 @@ jobs:
|
|||||||
cd ./build && cpack -G DEB && sudo dpkg -i nDPId-*.deb && cd ..
|
cd ./build && cpack -G DEB && sudo dpkg -i nDPId-*.deb && cd ..
|
||||||
- name: Upload DEB
|
- name: Upload DEB
|
||||||
if: startsWith(matrix.os, 'macOS') == false && matrix.upload
|
if: startsWith(matrix.os, 'macOS') == false && matrix.upload
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: nDPId-debian-packages_${{ matrix.compiler }}${{ matrix.upload_suffix }}
|
name: nDPId-debian-packages_${{ matrix.compiler }}${{ matrix.upload_suffix }}
|
||||||
path: build/*.deb
|
path: build/*.deb
|
||||||
|
|||||||
4
.github/workflows/sonarcloud.yml
vendored
4
.github/workflows/sonarcloud.yml
vendored
@@ -13,10 +13,10 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
BUILD_WRAPPER_OUT_DIR: build_wrapper_output_directory
|
BUILD_WRAPPER_OUT_DIR: build_wrapper_output_directory
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
# - uses: actions/checkout@v3
|
# - uses: actions/checkout@v4
|
||||||
# - name: Set up Python 3.8 for gcovr
|
# - name: Set up Python 3.8 for gcovr
|
||||||
# uses: actions/setup-python@v4
|
# uses: actions/setup-python@v4
|
||||||
# with:
|
# with:
|
||||||
|
|||||||
Reference in New Issue
Block a user