Update .gitea/workflows/build.yml

This commit is contained in:
Greg Gauthier 2024-07-23 10:27:52 +00:00
parent 97651c45cd
commit 4ab34396f0

View File

@ -10,23 +10,13 @@ jobs:
runs-on: ubuntu-gitea runs-on: ubuntu-gitea
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Prep for local builds
run: echo "${LOCIP} gitea.comnenos" >> /etc/hosts
- name: Install Dependencies
run: |
apt update && apt install -y ca-certificates curl gnupg && mkdir -p /etc/apt/keyrings && curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg && NODE_MAJOR=20 && echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODE_MAJOR.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list && apt update && apt install nodejs -y
apt install -y maven
- name: Setup Java
- uses: actions/setup-java@v4 - uses: actions/setup-java@v4
with: with:
distribution: 'adopt' # See 'Supported distributions' for available options distribution: 'temurin' # See 'Supported distributions' for available options
java-version: '17' java-version: '21' - uses: actions/checkout@v4
run: |
java -version - name: Install Maven
mvn -B verify --file pom.xml run: apt install -y maven
- name: Build And Test - name: Build And Test
run: | run: |