Skip to content

Commit

Permalink
Workflow: Retour sur une compilation simple
Browse files Browse the repository at this point in the history
  • Loading branch information
Churros98 committed Dec 22, 2024
1 parent dfdcb8f commit 7dd035a
Showing 1 changed file with 13 additions and 8 deletions.
21 changes: 13 additions & 8 deletions .github/workflows/build-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,20 @@ jobs:
sudo apt-get install -y gcc-aarch64-linux-gnu
sudo apt-get install -y crossbuild-essential-arm64
fi
- name: Build binary
- name: List files
run: |
make CC=${{ matrix.gcc_arch }}
mv ustreamer ustreamer-${{ matrix.arch }}
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: ustreamer-${{ matrix.arch }}
path: ustreamer-${{ matrix.arch }}
ls -lisa /usr/include/
ls -lisa /usr/lib/
# - name: Build binary
# run: |
# make CC=${{ matrix.gcc_arch }}
# mv ustreamer ustreamer-${{ matrix.arch }}
# - name: Upload artifact
# uses: actions/upload-artifact@v3
# with:
# name: ustreamer-${{ matrix.arch }}
# path: ustreamer-${{ matrix.arch }}
release:
needs: build
if: startsWith(github.ref, 'refs/tags/v')
Expand Down

0 comments on commit 7dd035a

Please sign in to comment.