Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
pytato
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Andreas Klöckner
pytato
Commits
7b3e8e82
Commit
7b3e8e82
authored
3 years ago
by
Andreas Klöckner
Committed by
Andreas Klöckner
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Fix downstream CI: actually rewrite requirements.txt
parent
ed3f3885
No related branches found
No related tags found
No related merge requests found
Pipeline
#202572
passed
3 years ago
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.github/workflows/ci.yml
+7
-3
7 additions, 3 deletions
.github/workflows/ci.yml
with
7 additions
and
3 deletions
.github/workflows/ci.yml
+
7
−
3
View file @
7b3e8e82
...
...
@@ -108,6 +108,9 @@ jobs:
env
:
DOWNSTREAM_PROJECT
:
${{ matrix.downstream_project }}
run
:
|
curl -L -O https://tiker.net/ci-support-v0
. ./ci-support-v0
if test "$DOWNSTREAM_PROJECT" = "mirgecom"; then
git clone "https://github.com/illinois-ceesd/$DOWNSTREAM_PROJECT.git"
else
...
...
@@ -117,6 +120,9 @@ jobs:
cd "$DOWNSTREAM_PROJECT"
echo "*** $DOWNSTREAM_PROJECT version: $(git rev-parse --short HEAD)"
transfer_requirements_git_urls ../requirements.txt ./requirements.txt
sed -i "/egg=pytato/ c git+file://$(readlink -f ..)#egg=pytato" requirements.txt
# Avoid slow or complicated tests in downstream projects
export PYTEST_ADDOPTS="-k 'not (slowtest or octave or mpi)'"
...
...
@@ -130,11 +136,9 @@ jobs:
sed -i "/mpi4py/ d" requirements.txt
fi
curl -L -O https://tiker.net/ci-support-v0
. ./ci-support-v0
build_py_project_in_conda_env
test_py_project
if [[ "$DOWNSTREAM_PROJECT" = "meshmode" ]]; then
python ../examples/simple-dg.py --lazy
fi
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment