Skip to content

Commit

Permalink
add linux script
Browse files Browse the repository at this point in the history
  • Loading branch information
pd3v committed Dec 26, 2023
1 parent 77fe396 commit 7d19415
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,25 @@ jobs:
- name: line macOS Artifact
uses: actions/upload-artifact@v3
with:
name: line_v0.5.26_macOS
name: line_v0.5.31_macOS
path: ${{github.workspace}}/
linux_build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Checkout submodules
run: git submodule update --init --recursive --remote
- name: Build
run: ./build.sh
- name: Remove build-only process files
run: |
rm -r ${{github.workspace}}/build/CMakeFiles
rm ${{github.workspace}}/build/*.cmake
rm ${{github.workspace}}/build/CMakeCache.txt
rm ${{github.workspace}}/build/Makefile
- name: line linux Artifact
uses: actions/upload-artifact@v3
with:
name: line_v0.5.31_linux
path: ${{github.workspace}}/

0 comments on commit 7d19415

Please sign in to comment.