Skip to content

Commit

Permalink
parallal
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeWang1127 committed Sep 30, 2024
1 parent b912f91 commit 21cfc2c
Showing 1 changed file with 12 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,10 @@ steps:
-o type=image \
.
waitFor: ["-"]
- id: run-integration-test
name: python:3.12
entrypoint: bash
args:
- -c
- |
- id: install-deps
name: bash
script:
|
# copy generator JAR
apt-get update && apt-get install -y maven
# install docker engine
Expand All @@ -46,8 +44,15 @@ steps:
pip install --upgrade pip
pip install --require-hashes -r library_generation/requirements.txt
pip install ./library_generation
waitFor: ["-"]
- id: run-integration-test
name: python:3.12
entrypoint: bash
args:
- -c
- |
python -m unittest ./library_generation/test/integration_tests.py
waitFor: ["library-generation-image-build"]
waitFor: ["library-generation-image-build", "install-deps"]

options:
# Builds ran by service accounts we need to either a) specify a logs bucket,
Expand Down

0 comments on commit 21cfc2c

Please sign in to comment.