From dc3f3471f8a00ce0c8fb4cbf2a31e299696f3bbc Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Tue, 31 Jan 2023 05:13:00 +0100 Subject: Adding upstream version 2.3. Signed-off-by: Daniel Baumann --- .github/workflows/meson.yml | 121 -------------------------------------------- 1 file changed, 121 deletions(-) delete mode 100644 .github/workflows/meson.yml (limited to '.github/workflows/meson.yml') diff --git a/.github/workflows/meson.yml b/.github/workflows/meson.yml deleted file mode 100644 index ee80af3..0000000 --- a/.github/workflows/meson.yml +++ /dev/null @@ -1,121 +0,0 @@ -name: nvme-cli meson CI - -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] - - workflow_dispatch: - -jobs: - build-disto: - runs-on: ubuntu-latest - - steps: - - name: install libraries - run: sudo apt-get install libjson-c-dev libhugetlbfs-dev - - uses: actions/checkout@v3 - - uses: actions/setup-python@v4 - with: - python-version: '3.x' - # - name: install python dependencies - # run: | - # python -m pip install --upgrade pip - # pip install nose nose2 - - uses: BSFishy/meson-build@v1.0.3 - with: - setup-options: --werror - action: build - - build-cross-armhf: - runs-on: ubuntu-latest - steps: - - name: set up arm architecture - run: | - export release=$(lsb_release -c -s) - sudo dpkg --add-architecture armhf - sudo sed -i -e 's/deb http/deb [arch=amd64] http/g' /etc/apt/sources.list - sudo dd of=/etc/apt/sources.list.d/armhf.list <