-
Notifications
You must be signed in to change notification settings - Fork 0
32 lines (26 loc) · 805 Bytes
/
smoke.yml
File metadata and controls
32 lines (26 loc) · 805 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: Smoke (Ant + Ivy)
# Resolve and exercise the published edtf artefact from a real
# Ant + Ivy build, the same shape JOSM plugins use. Runs on a daily
# schedule so a Maven Central propagation regression or accidental
# artefact takedown is caught proactively.
on:
schedule:
- cron: '0 6 * * *' # daily at 06:00 UTC
workflow_dispatch:
jobs:
smoke:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up JDK 17
uses: actions/setup-java@v5
with:
distribution: temurin
java-version: 17
- name: Install Ant
run: |
sudo apt-get update
sudo apt-get install -y ant ivy
- name: Run smoke test
working-directory: smoke
run: ant -lib /usr/share/java/ivy.jar test