From 7b6a951a3a586379e3abbb2deaf6f824c918b83a Mon Sep 17 00:00:00 2001 From: cmclark00 Date: Tue, 13 Aug 2024 22:31:59 -0400 Subject: [PATCH] aasads --- .github/workflows/build-macos.yml | 34 ------------------- .github/workflows/build-ubuntu-deb.yml | 38 --------------------- .github/workflows/codeql.yml | 47 -------------------------- .github/workflows/main.yml | 24 ------------- .github/workflows/main1.yml | 37 -------------------- .github/workflows/workflow.yml | 36 -------------------- 6 files changed, 216 deletions(-) delete mode 100644 .github/workflows/build-macos.yml delete mode 100644 .github/workflows/build-ubuntu-deb.yml delete mode 100644 .github/workflows/codeql.yml delete mode 100644 .github/workflows/main.yml delete mode 100644 .github/workflows/main1.yml delete mode 100644 .github/workflows/workflow.yml diff --git a/.github/workflows/build-macos.yml b/.github/workflows/build-macos.yml deleted file mode 100644 index d7af6b5..0000000 --- a/.github/workflows/build-macos.yml +++ /dev/null @@ -1,34 +0,0 @@ -name: Build MacOS - -on: - push: - branches: [ "qml" ] - pull_request: - branches: [ "qml" ] - -env: - # Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) - BUILD_TYPE: Release - -jobs: - build: - runs-on: macos-latest - - defaults: - run: - working-directory: src - - steps: - - uses: actions/checkout@v3 - - - name: Install Qt - uses: jurplel/install-qt-action@v3 - - - name: Configure CMake - # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make. - # See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type - run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} - - - name: Build - # Build your program with the given configuration - run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} diff --git a/.github/workflows/build-ubuntu-deb.yml b/.github/workflows/build-ubuntu-deb.yml deleted file mode 100644 index 18e9b95..0000000 --- a/.github/workflows/build-ubuntu-deb.yml +++ /dev/null @@ -1,38 +0,0 @@ -name: Build Ubuntu .deb - -on: - push: - branches: [ "qml" ] - pull_request: - branches: [ "qml" ] - -jobs: - build-linux: - name: Build on Linux - runs-on: ubuntu-latest - strategy: - matrix: - arch: [x64, arm64] - steps: - - uses: actions/checkout@v3 - - name: Set up QEMU - uses: docker/setup-qemu-action@v2 - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 - - name: Install Dependencies - run: | - sudo apt-get update - sudo apt-get install -y cmake make gcc g++ libssl-dev - sudo apt-get install -y qtbase5-dev qtdeclarative5-dev libqt5svg5-dev - - name: Build - run: | - cd src - mkdir build - cd build - cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_COMPILER=g++ -DCMAKE_C_COMPILER=gcc - make - - name: Upload Artifact - uses: actions/upload-artifact@v3 - with: - name: linux-${{ matrix.arch }}-binaries - path: src/build/* diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml deleted file mode 100644 index 8ebfc18..0000000 --- a/.github/workflows/codeql.yml +++ /dev/null @@ -1,47 +0,0 @@ -name: "CodeQL" - -on: - push: - branches: [ "qml" ] - pull_request: - branches: [ "qml" ] - schedule: - - cron: '44 19 * * 0' - -jobs: - analyze: - name: Analyze - runs-on: 'ubuntu-latest' - permissions: - actions: read - contents: read - security-events: write - - strategy: - fail-fast: false - matrix: - language: [ 'cpp' ] - - steps: - - name: Install dependencies - run: sudo apt install -y --no-install-recommends build-essential devscripts debhelper cmake git libarchive-dev libcurl4-gnutls-dev - qtbase5-dev qtbase5-dev-tools qtdeclarative5-dev libqt5svg5-dev qttools5-dev libgnutls28-dev - qml-module-qtquick2 qml-module-qtquick-controls2 qml-module-qtquick-layouts qml-module-qtquick-templates2 qml-module-qtquick-window2 qml-module-qtgraphicaleffects - - - name: Checkout repository - uses: actions/checkout@v3 - - # Initializes the CodeQL tools for scanning. - - name: Initialize CodeQL - uses: github/codeql-action/init@v2 - with: - languages: ${{ matrix.language }} - queries: security-and-quality - - - name: Autobuild - uses: github/codeql-action/autobuild@v2 - - - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v2 - with: - category: "/language:${{matrix.language}}" diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml deleted file mode 100644 index 8e438e2..0000000 --- a/.github/workflows/main.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: Build on Linux - runs-on: ubuntu-latest - strategy: - matrix: - arch: [x64, arm64] - steps: - - uses: actions/checkout@v3 - - name: Set up QEMU - uses: docker/setup-qemu-action@v2 - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 - - name: Install Dependencies - run: sudo apt-get install -y cmake make gcc g++ libssl-dev - - name: Build - run: | - mkdir build - cd build - cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_COMPILER=g++ -DCMAKE_C_COMPILER=gcc - make - - name: Upload Artifact - uses: actions/upload-artifact@v3 - with: - name: linux-${{ matrix.arch }}-binaries - path: build/* diff --git a/.github/workflows/main1.yml b/.github/workflows/main1.yml deleted file mode 100644 index 383247f..0000000 --- a/.github/workflows/main1.yml +++ /dev/null @@ -1,37 +0,0 @@ - -name: Universal1 - -on: - push: - branches: - - main - pull_request: - branches: - - main - -jobs: - build-linux: - name: idk - runs-on: ubuntu-latest - strategy: - matrix: - arch: [x64, arm64] - steps: - - uses: actions/checkout@v3 - - name: Set up QEMU1 - uses: docker/setup-qemu-action@v2 - - name: Set up Docker Buildx1 - uses: docker/setup-buildx-action@v2 - - name: Install Dependencies1 - run: sudo apt-get install -y cmake make gcc g++ libssl-dev - - name: Build1 - run: | - mkdir build - cd build - cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_COMPILER=g++ -DCMAKE_C_COMPILER=gcc - make - - name: Upload Artifact1 - uses: actions/upload-artifact@v3 - with: - name: linux-${{ matrix.arch }}-binaries - path: build/* diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml deleted file mode 100644 index 6b279ff..0000000 --- a/.github/workflows/workflow.yml +++ /dev/null @@ -1,36 +0,0 @@ -name: CI - -on: - push: - branches: - - main - pull_request: - branches: - - main - -jobs: - build-linux: - name: Build on Linux - runs-on: ubuntu-latest - strategy: - matrix: - arch: [x64, arm64] - steps: - - uses: actions/checkout@v3 - - name: Set up QEMU - uses: docker/setup-qemu-action@v2 - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 - - name: Install Dependencies - run: sudo apt-get install -y cmake make gcc g++ libssl-dev - - name: Build - run: | - mkdir build - cd build - cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_COMPILER=g++ -DCMAKE_C_COMPILER=gcc - make - - name: Upload Artifact - uses: actions/upload-artifact@v3 - with: - name: linux-${{ matrix.arch }}-binaries - path: build/*