Skip to content

Commit 3eec04c

Browse files
committed
feat. Upgrade module to latest kernel version
1 parent 04ef335 commit 3eec04c

File tree

17 files changed

+144
-63
lines changed

17 files changed

+144
-63
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
name: Bug report
2+
description: Create a bug report to help us improve.
3+
title: "Bug: "
4+
body:
5+
- type: textarea
6+
id: current
7+
attributes:
8+
label: Current Behaviour
9+
description: |
10+
Description of the problem or issue here.
11+
Include entries of affected creatures / items / quests / spells etc.
12+
If this is a crash, post the crashlog (upload to https://gist.github.com/) and include the link here.
13+
Never upload files! Use GIST for text and YouTube for videos!
14+
validations:
15+
required: true
16+
- type: textarea
17+
id: expected
18+
attributes:
19+
label: Expected Behaviour
20+
description: |
21+
Tell us what should happen instead.
22+
validations:
23+
required: true
24+
- type: textarea
25+
id: reproduce
26+
attributes:
27+
label: Steps to reproduce the problem
28+
description: |
29+
What does someone else need to do to encounter the same bug?
30+
placeholder: |
31+
1. Step 1
32+
2. Step 2
33+
3. Step 3
34+
validations:
35+
required: true
36+
- type: textarea
37+
id: extra
38+
attributes:
39+
label: Extra Notes
40+
description: |
41+
Do you have any extra notes that can help solve the issue that does not fit any other field?
42+
placeholder: |
43+
None
44+
validations:
45+
required: false
46+
- type: textarea
47+
id: commit
48+
attributes:
49+
label: AC rev. hash/commit
50+
description: |
51+
Copy the result of the `.server debug` command (if you need to run it from the client get a prat addon)
52+
validations:
53+
required: true
54+
- type: input
55+
id: os
56+
attributes:
57+
label: Operating system
58+
description: |
59+
The Operating System the Server is running on.
60+
i.e. Windows 11 x64, Debian 10 x64, macOS 12, Ubuntu 20.04
61+
validations:
62+
required: true
63+
- type: textarea
64+
id: custom
65+
attributes:
66+
label: Custom changes or Modules
67+
description: |
68+
List which custom changes or modules you have applied, i.e. Eluna module, etc.
69+
placeholder: |
70+
None
71+
validations:
72+
required: false
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Feature request
2+
description: Suggest an idea for this project
3+
title: "Feature: "
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thank you for taking your time to fill out a feature request. Remember to fill out all fields including the title above.
9+
An issue that is not properly filled out will be closed.
10+
- type: textarea
11+
id: description
12+
attributes:
13+
label: Describe your feature request or suggestion in detail
14+
description: |
15+
A clear and concise description of what you want to happen.
16+
validations:
17+
required: true
18+
- type: textarea
19+
id: solution
20+
attributes:
21+
label: Describe a possible solution to your feature or suggestion in detail
22+
description: |
23+
A clear and concise description of any alternative solutions or features you've considered.
24+
validations:
25+
required: false
26+
- type: textarea
27+
id: additional
28+
attributes:
29+
label: Additional context
30+
description: |
31+
Add any other context or screenshots about the feature request here.
32+
validations:
33+
required: false

README.md renamed to .github/README.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,18 @@
11
# ![logo](https://raw.githubusercontent.com/azerothcore/azerothcore.github.io/master/images/logo-github.png) AzerothCore
2+
23
## mod-1v1-Arena
4+
35
### This is a module for [AzerothCore](http://www.azerothcore.org)
4-
- Latest build status with azerothcore: [![Build Status](https://github.com/azerothcore/mod-1v1-arena/workflows/core-build/badge.svg?branch=master&event=push)](https://github.com/azerothcore/mod-1v1-arena)
56

6-
#### Features:
7-
-1v1 Rated Arena Games
7+
- Latest build status with azerothcore:
8+
9+
[![Build Status](https://github.com/azerothcore/mod-1v1-arena/workflows/core-build/badge.svg?branch=master&event=push)](https://github.com/azerothcore/mod-1v1-arena)
810

9-
-1v1 Unrated Arena Games
11+
![icon](https://github.com/azerothcore/mod-1v1-arena/assets/2810187/ba375f70-71c7-4c71-aa3f-d3ab6c6fdda7)
1012

13+
#### Features:
14+
- 1v1 Rated Arena Games
15+
- 1v1 Unrated Arena Games
1116

1217
### This module currently requires:
1318
- AzerothCore v1.0.1+
@@ -24,12 +29,9 @@
2429
### Info
2530
This module runs over the 5v5.You can configure it to run over 4v4/3v3..etc As you desire.
2631

27-
2832
## Credits
2933
* [XDev](https://github.com/XdevTLKWoW):
3034
* Adjusted by fr4z3n for azerothcore
3135
* Written by Teiby
3236

33-
34-
3537
AzerothCore: [repository](https://github.com/azerothcore) - [website](http://azerothcore.org) - [discord chat community](https://discord.gg/PaqQRkd)

.github/workflows/core-build.yml

Lines changed: 5 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,12 @@
11
name: core-build
22
on:
33
push:
4+
branches:
5+
- 'master'
46
pull_request:
57

68
jobs:
79
build:
8-
strategy:
9-
fail-fast: false
10-
matrix:
11-
compiler: [clang]
12-
runs-on: ubuntu-latest
13-
name: ${{ matrix.compiler }}
14-
env:
15-
COMPILER: ${{ matrix.compiler }}
16-
steps:
17-
- uses: actions/checkout@v2
18-
with:
19-
repository: 'azerothcore/azerothcore-wotlk'
20-
ref: 'master'
21-
submodules: 'recursive'
22-
- uses: actions/checkout@v2
23-
with:
24-
submodules: 'recursive'
25-
path: 'modules/mod-1v1-arena'
26-
- name: Cache
27-
uses: actions/cache@v1.1.2
28-
with:
29-
path: /home/runner/.ccache
30-
key: ccache:${{ matrix.compiler }}:${{ github.ref }}:${{ github.sha }}
31-
restore-keys: |
32-
ccache:${{ matrix.compiler }}:${{ github.ref }}
33-
ccache:${{ matrix.compiler }}
34-
- name: Configure OS
35-
run: source ./apps/ci/ci-install.sh
36-
env:
37-
CONTINUOUS_INTEGRATION: true
38-
- name: Import db
39-
run: source ./apps/ci/ci-import-db.sh
40-
- name: Build
41-
run: source ./apps/ci/ci-compile.sh
42-
- name: Dry run
43-
run: source ./apps/ci/ci-worldserver-dry-run.sh
44-
- name: Check startup errors
45-
run: source ./apps/ci/ci-error-check.sh
10+
uses: azerothcore/reusable-workflows/.github/workflows/core_build_modules.yml@main
11+
with:
12+
module_repo: ${{ github.event.repository.name }}

conf/conf.sh.dist

Lines changed: 0 additions & 9 deletions
This file was deleted.

data/.gitkeep

Whitespace-only changes.

data/sql/db-auth/base/.gitkeep

Whitespace-only changes.

data/sql/db-auth/updates/.gitkeep

Whitespace-only changes.

data/sql/db-characters/base/.gitkeep

Whitespace-only changes.

data/sql/db-characters/updates/.gitkeep

Whitespace-only changes.

0 commit comments

Comments
 (0)