Skip to content

Build C++ on the CI #15

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 21 commits into
base: main
Choose a base branch
from
27 changes: 27 additions & 0 deletions .github/workflows/rust-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,33 @@ on:

name: CI
jobs:
unreal:
name: Unreal
runs-on: ubuntu-latest
timeout-minutes: 40
container:
image: ghcr.io/epicgames/unreal-engine:dev-slim-5.0.3
credentials:
username: ${{ github.actor }}
password: ${{ secrets.UNREAL }}

steps:
#- uses: docker/login-action@v2
# with:
# registry: ghcr.io
# username: maikklein
# password: ${{ secrets.UNREAL }}
#- name: Build
# run: |
# docker pull ghcr.io/epicgames/unreal-engine:dev-5.0
# echo "Hello World"
- name: Build
run: |
ls -a
echo "Hello World"
cd RustPlugin
pip install ue4cli
ue4 build
lint:
name: Lint
runs-on: ubuntu-latest
Expand Down