Skip to content

Commit

Permalink
Linux Build (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
ShortDevelopment authored Jun 27, 2024
1 parent d82a67f commit 1209562
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,27 @@ jobs:
with:
name: windows
path: runtimes/

linux:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: "true"

- name: Create directories
run: mkdir -p runtimes/linux-x64/native/
- name: Build x64
run: |
mkdir tmp
cd tmp
cmake ../src
make
cp *.so.* ../runtimes/linux-x64/native/
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: linux
path: runtimes/

0 comments on commit 1209562

Please sign in to comment.