Skip to content

Commit

Permalink
Workflow update
Browse files Browse the repository at this point in the history
  • Loading branch information
uweseimet committed Dec 3, 2023
1 parent fa3610a commit 827dce7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_armv6.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,12 @@ jobs:
- name: Build debug strings
if: ${{ inputs.debug-flag }}
run: echo "DEBUG=DEBUG\=1" >> $GITHUB_ENV
run: echo "debug_flag_compile=DEBUG\=1" >> $GITHUB_ENV

- name: Compile
run: |
export LDFLAGS="-Wl,-rpath-link,/opt/cross/armv6/arm-linux-gnueabihf/sys-root/lib" &&
make -j $(nproc) CONNECT_TYPE=${{ inputs.connect-type }} $DEBUG CROSS_COMPILE=/opt/cross/armv6/bin/arm-linux-gnueabihf-
make -j $(nproc) CONNECT_TYPE=${{ inputs.connect-type }} ${{ env.debug_flag_compile }} CROSS_COMPILE=/opt/cross/armv6/bin/arm-linux-gnueabihf-
- name: Create binary package
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build_armv8.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,12 @@ jobs:
- name: Build debug strings
if: ${{ inputs.debug-flag }}
run: echo "DEBUG=DEBUG\=1" >> $GITHUB_ENV
run: echo "debug_flag_compile=DEBUG\=1" >> $GITHUB_ENV

- name: Compile
run: |
export LDFLAGS="-Wl,-rpath-link,/opt/cross/armv8/aarch64-linux-gnu/sys-root/lib" &&
make -j $(nproc) CONNECT_TYPE=${{ inputs.connect-type }} $DEBUG CROSS_COMPILE=/opt/cross/armv8/bin/aarch64-linux-gnu-
make -j $(nproc) CONNECT_TYPE=${{ inputs.connect-type }} ${{ env.debug_flag_compile }} CROSS_COMPILE=/opt/cross/armv8/bin/aarch64-linux-gnu-
- name: Create binary package
run: |
Expand Down

0 comments on commit 827dce7

Please sign in to comment.