Skip to content

Commit

Permalink
ci: remove lunatic build
Browse files Browse the repository at this point in the history
  • Loading branch information
davdarras committed Sep 24, 2024
1 parent 6d7e5db commit 937b1ec
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 39 deletions.
17 changes: 4 additions & 13 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,24 +17,15 @@ jobs:
- name: Get queen-batch version
id: queenbatch
run: echo "::set-output name=prop::$(mvn -f pom.xml help:evaluate -Dexpression=queenbatch.version -q -DforceStdout)"

- name: Clone queen-batch
run: git clone https://github.com/InseeFr/Queen-Batch.git --depth 1 --branch ${{steps.queenbatch.outputs.prop}}-rc
- name: Get lunatic-model version
id: lunaticmodel
run: |
cd Queen-Batch
echo "::set-output name=prop::$(mvn -f pom.xml help:evaluate -Dexpression=lunatic.model.version -q -DforceStdout)"
- name: Clone lunatic-model
run: |
git clone https://github.com/InseeFr/Lunatic-Model.git --depth 1 --branch ${{steps.lunaticmodel.outputs.prop}}-rc
- name: Install lunatic-model
run: |
cd Lunatic-Model
mvn clean install -DskipTests --batch-mode --no-transfer-progress
run: git clone https://github.com/InseeFr/Queen-Batch.git --depth 1 --branch ${{steps.queenbatch.outputs.prop}}

- name: Install queen-batch
run: |
cd Queen-Batch
mvn clean install -DskipTests --batch-mode --no-transfer-progress
- name: Build with Maven
timeout-minutes: 15
run: mvn clean install --batch-mode --no-transfer-progress
Expand Down
16 changes: 3 additions & 13 deletions .github/workflows/develop-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,10 @@ jobs:
- name: Get queen-batch version
id: queenbatch
run: echo "::set-output name=prop::$(mvn -f pom.xml help:evaluate -Dexpression=queenbatch.version -q -DforceStdout)"

- name: Clone queen-batch
run: git clone https://github.com/InseeFr/Queen-Batch.git --depth 1 --branch ${{steps.queenbatch.outputs.prop}}-rc
- name: Get lunatic-model version
id: lunaticmodel
run: |
cd Queen-Batch
echo "::set-output name=prop::$(mvn -f pom.xml help:evaluate -Dexpression=lunatic.model.version -q -DforceStdout)"
- name: Clone lunatic-model
run: |
git clone https://github.com/InseeFr/Lunatic-Model.git --depth 1 --branch ${{steps.lunaticmodel.outputs.prop}}-rc
- name: Install lunatic-model
run: |
cd Lunatic-Model
mvn clean install -DskipTests --batch-mode --no-transfer-progress
run: git clone https://github.com/InseeFr/Queen-Batch.git --depth 1 --branch ${{steps.queenbatch.outputs.prop}}

- name: Install queen-batch
run: |
cd Queen-Batch
Expand Down
14 changes: 1 addition & 13 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,7 @@ jobs:
id: queenbatch
run: echo "::set-output name=prop::$(mvn -f pom.xml help:evaluate -Dexpression=queenbatch.version -q -DforceStdout)"
- name: Clone queen-batch
run: git clone https://github.com/InseeFr/Queen-Batch.git --depth 1 --branch ${{steps.queenbatch.outputs.prop}}-rc
- name: Get lunatic-model version
id: lunaticmodel
run: |
cd Queen-Batch
echo "::set-output name=prop::$(mvn -f pom.xml help:evaluate -Dexpression=lunatic.model.version -q -DforceStdout)"
- name: Clone lunatic-model
run: |
git clone https://github.com/InseeFr/Lunatic-Model.git --depth 1 --branch ${{steps.lunaticmodel.outputs.prop}}-rc
- name: Install lunatic-model
run: |
cd Lunatic-Model
mvn clean install -DskipTests --batch-mode --no-transfer-progress
run: git clone https://github.com/InseeFr/Queen-Batch.git --depth 1 --branch ${{steps.queenbatch.outputs.prop}}
- name: Install queen-batch
run: |
cd Queen-Batch
Expand Down

0 comments on commit 937b1ec

Please sign in to comment.