-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
86fcd43
commit ad2bb3d
Showing
1 changed file
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: CI for GDCEF | ||
on: | ||
workflow_dispatch: | ||
branches: | ||
- master | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
build_linux: | ||
name: Build on Linux | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- name: Checkout GDCEF | ||
uses: actions/checkout@v3 | ||
with: | ||
submodules: true | ||
- name: Install system packages | ||
run: | | ||
sudo apt-get update | ||
cd addons/gdcef | ||
python3 -m pip install -r requirements.txt | ||
- name: Compile GDCEF | ||
run: | | ||
cd addons/gdcef | ||
python3 build.py | ||
- name: Check build | ||
run: | | ||
cd build | ||
ls gdcefSubProcess libgdcef.so libcef.so |