From cb23b557cf4359fc681a1c8c282cef59a3fd80a4 Mon Sep 17 00:00:00 2001 From: Paul Walker Date: Sat, 27 Jul 2024 07:39:44 -0400 Subject: [PATCH 1/6] a2 --- azure-pipelines.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 233812c..50eaeec 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -1,10 +1,8 @@ # Build dexed with JUCE buidls trigger: - - main + - main-nop -pr: - - main jobs: From ac728c1e736292a7ab9a379588d4edd5b4f85677 Mon Sep 17 00:00:00 2001 From: Paul Walker Date: Sat, 27 Jul 2024 07:40:52 -0400 Subject: [PATCH 2/6] f --- .github/workflows/build-pr.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From 2acb57e73fbf363b83315a60dceb46c710129c6f Mon Sep 17 00:00:00 2001 From: Paul Walker Date: Sat, 27 Jul 2024 07:42:09 -0400 Subject: [PATCH 3/6] f2 --- .github/workflows/code-checks.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/code-checks.yml b/.github/workflows/code-checks.yml index b0f055f..98f20a3 100644 --- a/.github/workflows/code-checks.yml +++ b/.github/workflows/code-checks.yml @@ -8,11 +8,11 @@ jobs: matrix: path: - 'src' - # - 'include' + - '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 }} From 2a02b6a153e2235deffd9dfd3b653fd83f09fd44 Mon Sep 17 00:00:00 2001 From: Paul Walker Date: Sat, 27 Jul 2024 07:43:04 -0400 Subject: [PATCH 4/6] f --- tests/alltests.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/alltests.cpp b/tests/alltests.cpp index d71ed81..921d61d 100644 --- a/tests/alltests.cpp +++ b/tests/alltests.cpp @@ -37,6 +37,7 @@ TEST_CASE("Loading tuning files") { SECTION("Load a 12 tone standard tuning") { + REQUIRE(1==2); auto s = Tunings::readSCLFile(testFile("12-intune.scl")); REQUIRE(s.count == 12); // FIXME - write a lot more here obviously From 1ff03c0488952dabcfd54354d795f486943d9d6b Mon Sep 17 00:00:00 2001 From: Paul Walker Date: Sat, 27 Jul 2024 07:45:33 -0400 Subject: [PATCH 5/6] final --- .github/workflows/code-checks.yml | 2 +- tests/alltests.cpp | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/code-checks.yml b/.github/workflows/code-checks.yml index 98f20a3..8cd830d 100644 --- a/.github/workflows/code-checks.yml +++ b/.github/workflows/code-checks.yml @@ -7,7 +7,7 @@ jobs: strategy: matrix: path: - - 'src' + - 'tests' - 'include' steps: - uses: actions/checkout@v3 diff --git a/tests/alltests.cpp b/tests/alltests.cpp index 921d61d..d71ed81 100644 --- a/tests/alltests.cpp +++ b/tests/alltests.cpp @@ -37,7 +37,6 @@ TEST_CASE("Loading tuning files") { SECTION("Load a 12 tone standard tuning") { - REQUIRE(1==2); auto s = Tunings::readSCLFile(testFile("12-intune.scl")); REQUIRE(s.count == 12); // FIXME - write a lot more here obviously From 2411c827473dca400caeda697ebdc8647c779316 Mon Sep 17 00:00:00 2001 From: Paul Walker Date: Sat, 27 Jul 2024 07:45:47 -0400 Subject: [PATCH 6/6] forreal --- azure-pipelines.yml | 41 ----------------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml deleted file mode 100644 index 50eaeec..0000000 --- a/azure-pipelines.yml +++ /dev/null @@ -1,41 +0,0 @@ -# Build dexed with JUCE buidls - -trigger: - - main-nop - - -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