From 0a2bb0210307f5c2b5e12b57ce80d327de12302e Mon Sep 17 00:00:00 2001 From: Malachi Burke Date: Fri, 6 Dec 2024 12:49:23 -0800 Subject: [PATCH] r&d: test triggering --- .github/workflows/cmake.yml | 3 ++- .github/workflows/github-actions-demo.yml | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 1e01d3e6..9cbf0436 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -34,7 +34,8 @@ jobs: - name: Build # Build your program with the given configuration working-directory: ${{env.unit_test_dir}} - run: cmake --build $unit_test_dir/build --config ${{env.BUILD_TYPE}} + run: cmake --build $unit_test_dir/build + # --config ${{env.BUILD_TYPE}} - name: Test working-directory: $unit_test_dir/build diff --git a/.github/workflows/github-actions-demo.yml b/.github/workflows/github-actions-demo.yml index 8867224f..12ab1906 100644 --- a/.github/workflows/github-actions-demo.yml +++ b/.github/workflows/github-actions-demo.yml @@ -5,7 +5,7 @@ jobs: Explore-GitHub-Actions: runs-on: ubuntu-latest steps: - - run: "Hello trigger!" + - run: echo "Hello trigger!" - run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event." - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!" - run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."