summaryrefslogtreecommitdiff
path: root/genqrcode
diff options
context:
space:
mode:
authorMehmet Samet Duman <yongdohyun@projecttick.org>2026-04-02 20:38:37 +0300
committerMehmet Samet Duman <yongdohyun@projecttick.org>2026-04-02 20:38:37 +0300
commit25a9943d68a7dc31eeefeb17913dbe37d87e5302 (patch)
tree540166d548cafc56726a07225f2dbe649c8e2444 /genqrcode
parenta4b5ffbaadb591066e2a97f8d450fb1d93e56a6e (diff)
downloadProject-Tick-25a9943d68a7dc31eeefeb17913dbe37d87e5302.tar.gz
Project-Tick-25a9943d68a7dc31eeefeb17913dbe37d87e5302.zip
NOISSUE Remove not needed CI workflows for GitHub Actions and reworked some workflows
Signed-off-by: Mehmet Samet Duman <yongdohyun@projecttick.org>
Diffstat (limited to 'genqrcode')
-rw-r--r--genqrcode/.github/workflows/cmake.yml55
-rw-r--r--genqrcode/.github/workflows/configure.yml26
2 files changed, 0 insertions, 81 deletions
diff --git a/genqrcode/.github/workflows/cmake.yml b/genqrcode/.github/workflows/cmake.yml
deleted file mode 100644
index 1fd5c4d65d..0000000000
--- a/genqrcode/.github/workflows/cmake.yml
+++ /dev/null
@@ -1,55 +0,0 @@
-name: CMake-build
-
-on: [push, pull_request]
-
-env:
- BUILD_TYPE: Release
-
-jobs:
- build:
- runs-on: ${{ matrix.os }}
- strategy:
- matrix:
- os: [ubuntu-latest, macos-latest, windows-latest]
-
- steps:
- - uses: actions/checkout@v2
-
- - name: run vcpkg
- if: matrix.os == 'windows-latest'
- uses: lukka/run-vcpkg@v6
- with:
- vcpkgArguments: getopt:x64-windows libiconv:x64-windows libpng:x64-windows
- vcpkgDirectory: '${{ github.workspace }}/vcpkg'
- vcpkgGitCommitId: '2a42024b53ebb512fb5dd63c523338bf26c8489c'
- appendedCacheKey: ${{ hashFiles( '${{ github.workspace }}/.github/workflows/cmake.yml' ) }}
-
- - name: brew setup
- if: matrix.os == 'macos-latest'
- run: brew install pkg-config libpng
-
- - name: Create Build Environment
- run: cmake -E make_directory ${{runner.workspace}}/build
-
- - name: Configure CMake
- if: matrix.os != 'windows-latest'
- shell: bash
- working-directory: ${{runner.workspace}}/build
- run: cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DWITH_TESTS=yes -DBUILD_SHARED_LIBS=on
-
- - name: Configure CMake for Windows
- if: matrix.os == 'windows-latest'
- shell: bash
- working-directory: ${{runner.workspace}}/build
- run: cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DCMAKE_TOOLCHAIN_FILE=$VCPKG_ROOT/scripts/buildsystems/vcpkg.cmake -DWITH_TESTS=yes
-
-
- - name: Build
- working-directory: ${{runner.workspace}}/build
- shell: bash
- run: cmake --build . --config $BUILD_TYPE -j 2
-
- - name: Test
- working-directory: ${{runner.workspace}}/build
- shell: bash
- run: ctest -C $BUILD_TYPE
diff --git a/genqrcode/.github/workflows/configure.yml b/genqrcode/.github/workflows/configure.yml
deleted file mode 100644
index 6fcf4d1a13..0000000000
--- a/genqrcode/.github/workflows/configure.yml
+++ /dev/null
@@ -1,26 +0,0 @@
-name: build
-
-on: [push, pull_request]
-
-jobs:
- build:
- runs-on: ${{ matrix.os }}
- strategy:
- matrix:
- os: [ubuntu-latest, macos-latest]
-
- steps:
- - uses: actions/checkout@v2
- - name: brew setup
- if: matrix.os == 'macos-latest'
- run: brew install automake autoconf pkg-config libpng
- - name: generate configure script
- run: ./autogen.sh
- - name: configure
- run: ./configure --with-tests
- - name: make
- run: make -j 2
- - name: make check
- run: make check
- - name: make distcheck
- run: make -j 2 distcheck