Compare commits
2 Commits
70e7e24aaa
...
5724a2342d
| Author | SHA1 | Date | |
|---|---|---|---|
|
5724a2342d
|
|||
|
95ac78b2d2
|
20
.gitea/workflows/build.yml
Normal file
20
.gitea/workflows/build.yml
Normal file
@@ -0,0 +1,20 @@
|
||||
name: build
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: docker
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Install dependencies
|
||||
run: sudo pacman -Syu --noconfirm base-devel jdk21-openjdk
|
||||
|
||||
- name: Make gradle executable
|
||||
run: sudo chmod +x gradlew
|
||||
|
||||
- name: Build project
|
||||
run: make
|
||||
Reference in New Issue
Block a user