Skip to content

clean up github workflow file and build rcbot plugin #379

clean up github workflow file and build rcbot plugin

clean up github workflow file and build rcbot plugin #379

Workflow file for this run

name: C/C++ CI
on: [push, pull_request]
jobs:
build-windows:
runs-on: windows-2022
steps:
- name: Checkout repositories
uses: ./.github/checkout_repos.yml
- name: Build everything
uses: ./.github/build_repos.yml
with:
cmake-args: -A Win32
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: sevenkewp-windows
path: build/output/
build-linux:
runs-on: ubuntu-20.04
steps:
- name: Checkout repositories
uses: ./.github/checkout_repos.yml
- name: Download and install dependencies
run: |
sudo apt install gcc-multilib g++-multilib libc6-dev-i386
mkdir build
- name: Build everything
uses: ./.github/build_repos.yml
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: sevenkewp-linux
path: build/output/