calculator-project/.gitea/workflows/maven.yaml

31 lines
786 B
YAML
Raw Normal View History

2024-02-23 23:10:49 +00:00
name: CMake
on: [push]
env:
BUILD_TYPE: Release
jobs:
build:
2024-07-21 19:10:37 +00:00
runs-on: ubuntu-gitea
2024-02-23 23:10:49 +00:00
steps:
- name: Prep For Local Builds
run: echo "${LOCIP} gitea.comnenos" >> /etc/hosts
- uses: actions/checkout@v2
- name: Install Build Tools
run: apt-get update && apt-get -y --no-install-recommends install build-essential openjdk-17-jdk maven maven-ant-helper && echo "********* INSTALLS COMPLETED *********"
- name: Maven Build
shell: bash
working-directory: ${{runner.workspace}}
2024-02-23 23:12:57 +00:00
run: mvn compiler:compile
2024-02-23 23:10:49 +00:00
- name: Maven Test
working-directory: ${{runner.workspace}}
shell: bash
# Execute the build. You can specify a specific target with "--target <NAME>"
run: mvn test