Skip to content

Commit 764f97b

Browse files
committed
demo update
1 parent 7adb0de commit 764f97b

2 files changed

Lines changed: 14 additions & 14 deletions

File tree

.github/workflows/demo.yaml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
paths:
77
- .github/workflows/demo.yaml
88
- .gitmodules
9-
- cpp-ap-demo
9+
- cpp-argon-demo
1010
- include/**
1111
- CMakeLists.txt
1212
- MODULE.bazel
@@ -17,7 +17,7 @@ on:
1717

1818
jobs:
1919
build-demo-linux:
20-
name: Build cpp-ap-demo (Linux)
20+
name: Build cpp-argon-demo (Linux)
2121
runs-on: ubuntu-24.04
2222

2323
steps:
@@ -42,10 +42,10 @@ jobs:
4242
echo "branch=$(echo ${GITHUB_REF#refs/heads/})" >> $GITHUB_OUTPUT
4343
fi
4444
45-
- name: Build cpp-ap-demo (CMake)
45+
- name: Build cpp-argon-demo (CMake)
4646
run: |
47-
cd cpp-ap-demo
48-
cmake -B build_cmake -DAP_TAG=${{ steps.branch-name.outputs.branch }}
47+
cd cpp-argon-demo
48+
cmake -B build_cmake -DARGON_TAG=${{ steps.branch-name.outputs.branch }}
4949
cmake --build build_cmake/ -j 4
5050
5151
- name: Setup Bazel
@@ -55,15 +55,15 @@ jobs:
5555
disk-cache: ${{ github.workflow }}
5656
repository-cache: true
5757

58-
- name: Build cpp-ap-demo (Bazel)
58+
- name: Build cpp-argon-demo (Bazel)
5959
run: |
60-
cd cpp-ap-demo
60+
cd cpp-argon-demo
6161
BRANCH="${{ steps.branch-name.outputs.branch }}"
6262
sed -i "s/branch = \".*\"/branch = \"$BRANCH\"/" MODULE.bazel
6363
bazel build //:all_demos
6464
6565
build-demo-windows:
66-
name: Build cpp-ap-demo (Windows)
66+
name: Build cpp-argon-demo (Windows)
6767
runs-on: windows-2022
6868

6969
steps:
@@ -91,10 +91,10 @@ jobs:
9191
"branch=$branch" >> $env:GITHUB_OUTPUT
9292
}
9393
94-
- name: Build cpp-ap-demo (CMake)
94+
- name: Build cpp-argon-demo (CMake)
9595
run: |
96-
cd cpp-ap-demo
97-
cmake -B build_cmake -DAP_TAG=${{ steps.branch-name.outputs.branch }}
96+
cd cpp-argon-demo
97+
cmake -B build_cmake -DARGON_TAG=${{ steps.branch-name.outputs.branch }}
9898
cmake --build build_cmake/ --config Release -j 4
9999
100100
- name: Setup Bazel
@@ -104,9 +104,9 @@ jobs:
104104
disk-cache: ${{ github.workflow }}
105105
repository-cache: true
106106

107-
- name: Build cpp-ap-demo (Bazel)
107+
- name: Build cpp-argon-demo (Bazel)
108108
run: |
109-
cd cpp-ap-demo
109+
cd cpp-argon-demo
110110
$BRANCH="${{ steps.branch-name.outputs.branch }}"
111111
(Get-Content MODULE.bazel) -replace 'branch = ".*"', "branch = `"$BRANCH`"" | Set-Content MODULE.bazel
112112
bazel build //:all_demos

0 commit comments

Comments
 (0)