diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e79a827..ffc1408 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -26,9 +26,10 @@ jobs: } steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 with: submodules: 'true' + fetch-depth: 0 - name: Install GNU tar shell: bash @@ -52,6 +53,12 @@ jobs: vcpkgDirectory: ${{github.workspace}}/vcpkg appendedCacheKey: ${{ hashFiles( env.VCPKGRESPONSEFILE ) }} + - name: Check name + run: | + git status + git describe --tags --dirty + shell: bash + - name: CMake uses: lukka/run-cmake@v2 id: runcmake diff --git a/.gitignore b/.gitignore index ece139c..6915253 100644 --- a/.gitignore +++ b/.gitignore @@ -4,4 +4,5 @@ _*.json *-checkpoint.ipynb *.pyc *.egg-info +build/ dist/ \ No newline at end of file diff --git a/.gitmodules b/.gitmodules index 3f4f6be..f21cab9 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,4 @@ [submodule "vcpkg"] path = vcpkg url = https://github.com/spinicist/vcpkg.git + ignore = dirty