From fb722bc798acc6b46f565bab25634a114a99ace1 Mon Sep 17 00:00:00 2001 From: Paul Date: Sat, 27 Jul 2024 07:47:10 -0400 Subject: [PATCH] Complete migration to GitHub actions Turn off azure, stage the jobs here as actions --- .github/workflows/build-pr.yml | 2 +- .github/workflows/code-checks.yml | 6 ++--- azure-pipelines.yml | 43 ------------------------------- 3 files changed, 4 insertions(+), 47 deletions(-) delete mode 100644 azure-pipelines.yml diff --git a/.github/workflows/build-pr.yml b/.github/workflows/build-pr.yml index d781bd2..7119c78 100644 --- a/.github/workflows/build-pr.yml +++ b/.github/workflows/build-pr.yml @@ -23,7 +23,7 @@ jobs: submodules: recursive - name: Install Locales on Linux - if: runner.os == 'macOS' + if: runner.os == 'Linux' run: | sudo locale-gen es_ES sudo locale-gen fr_FR diff --git a/.github/workflows/code-checks.yml b/.github/workflows/code-checks.yml index b0f055f..8cd830d 100644 --- a/.github/workflows/code-checks.yml +++ b/.github/workflows/code-checks.yml @@ -7,12 +7,12 @@ jobs: strategy: matrix: path: - - 'src' - # - 'include' + - 'tests' + - 'include' steps: - uses: actions/checkout@v3 - name: Run clang-format style check uses: jidicula/clang-format-action@v4.11.0 with: clang-format-version: '17' - check-path: ${{ matrix.path }} \ No newline at end of file + check-path: ${{ matrix.path }} diff --git a/azure-pipelines.yml b/azure-pipelines.yml deleted file mode 100644 index 233812c..0000000 --- a/azure-pipelines.yml +++ /dev/null @@ -1,43 +0,0 @@ -# Build dexed with JUCE buidls - -trigger: - - main - -pr: - - main - -jobs: - - - job: Build - strategy: - matrix: - mac: - imageName: 'macos-latest' - isMac: True - win: - imageName: 'windows-latest' - isWindows: True - lin: - imageName: 'ubuntu-latest' - isLinux: True - - pool: - vmImage: $(imageName) - - steps: - - checkout: self - fetchDepth: 1 - - - bash: | - sudo locale-gen es_ES - sudo locale-gen fr_FR - sudo locale-gen ja_JP - sudo locale-gen zh_CN - sudo update-locale - displayName: Install Locales on Linux - condition: variables.isLinux - - - bash: | - cmake -Bbuild - cmake --build build --target run-all-tests - displayName: Run tests with cmake