Skip to content

Commit bab1519

Browse files
committed
workflow fix and readme edit
1 parent 3883bb7 commit bab1519

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/cpp_standalone.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@ jobs:
3737
run: cmake --build build -j4
3838

3939
- name: run
40-
run: ./build/aligncount --help
40+
run: ./build/aligncount_cpp --help

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ RUN pip3 install pytest
6767
RUN pytest -q /app/tests/python/test_cli.py
6868

6969
# 4) Verify the binaries are on PATH (just a check; you can remove)
70-
RUN which Aligncount && which aligncount_wrapper
70+
RUN which aligncount_cpp && which aligncount
7171

7272
# Final entrypoint: run the Python wrapper by default
73-
ENTRYPOINT ["aligncount_wrapper"]
73+
ENTRYPOINT ["aligncount"]
7474
CMD ["--help"]

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ Template Repo Combines:
2020
- Remember to rename the `include/aligncount` directory to use your project's lowercase name and update all relevant `#include`s accordingly.
2121
- Replace instances of ALIGNCOUNT_VERSION with `[YOUR_PROJECT_NAME]_VERSION`
2222
- Set the name of the C++ executable (e.g. aligncount_cpp) to your liking in `cpp/standalone/CMakeLists.txt`
23+
- Set the expected name of the C++ executable in the `cpp_standalone.yml` workflow.
24+
- Set the expected name of the C++ executable and python wrapper in `DockerFile`.
2325
- Replace the source files with your own
2426
- Set GitHub action secrets for:
2527
- ANACONDA_TOKEN

0 commit comments

Comments
 (0)