Skip to content

Commit

Permalink
Test echo ${{ github.action }}
Browse files Browse the repository at this point in the history
  • Loading branch information
hebasto committed Aug 28, 2023
1 parent fe0a2e9 commit 99936a8
Showing 1 changed file with 20 additions and 5 deletions.
25 changes: 20 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,25 @@ jobs:

# - run: ./autogen.sh && ./configure --enable-dev-mode && make distcheck

- name: Check installation with Autotools
env:
CI_DIR: ${{ runner.temp }}/${{ github.run_id }}
- run: |
echo ${{ github.action }}
- name: A nice name
run: |
./autogen.sh && ./configure --prefix=${{ env.CI_DIR }} && make clean && make install && ls -l ${{ env.CI_DIR }}/include ${{ env.CI_DIR }}/lib
gcc -o ecdsa examples/ecdsa.c $(PKG_CONFIG_PATH=${{ env.CI_DIR }}/lib/pkgconfig pkg-config --cflags --libs libsecp256k1) -Wl,-rpath,"${{ env.CI_DIR }}/lib" && ./ecdsa
echo ${{ github.action }}
# - name: Check installation with Autotools
# env:
# CI_INSTALL: ${{ runner.temp }}/${{ github.run_id }}
# run: |
# ./autogen.sh && ./configure --prefix=${{ env.CI_INSTALL }} && make clean && make install && ls -l ${{ env.CI_INSTALL }}/include ${{ env.CI_INSTALL }}/lib
# gcc -o ecdsa examples/ecdsa.c $(PKG_CONFIG_PATH=${{ env.CI_INSTALL }}/lib/pkgconfig pkg-config --cflags --libs libsecp256k1) -Wl,-rpath,"${{ env.CI_INSTALL }}/lib" && ./ecdsa

# - name: Check installation with Autotools
# env:
# CI_BUILD: ${{ runner.temp }}/${{ github.run_id }}/build
# CI_INSTALL: ${{ runner.temp }}/${{ github.run_id }}/install
# run: |
# cmake -B ${{ env.CI_BUILD }} -DCMAKE_INSTALL_PREFIX=${{ env.CI_INSTALL }} && cmake --build ${{ env.CI_BUILD }} --target install && ls -l ${{ env.CI_INSTALL }}/include $dir/{{ env.CI_INSTALL }}*
# gcc -o ecdsa examples/ecdsa.c -I ${{ env.CI_INSTALL }}/include -L ${{ env.CI_INSTALL }}/lib*/ -l secp256k1 -Wl,-rpath,"${{ env.CI_INSTALL }}/lib",-rpath,"${{ env.CI_INSTALL }}/lib64" && ./ecdsa

0 comments on commit 99936a8

Please sign in to comment.