Skip to content

Commit

Permalink
add workflow file to test bot build
Browse files Browse the repository at this point in the history
  • Loading branch information
DubbleClick committed Aug 13, 2024
1 parent 85a6860 commit a2c4f8d
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/bot_alpine.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Build bot on alpine

on:
push:
branches:
- master
pull_request:

jobs:
build:
runs-on: ubuntu-latest

container:
image: alpine:3.20

steps:
- uses: actions/checkout@v4

- name: Install dependencies
run: |
apk add --no-cache \
bash \
cmake \
ninja \
ninja-build \
python3 py3-pip py3-tqdm py3-pefile
- name: Build
run: |
cd GuildWarsPartySearch.Bot
cmake -B linuxbuild -G "Ninja"
ninja -C linuxbuild

0 comments on commit a2c4f8d

Please sign in to comment.