Skip to content

Commit

Permalink
resolve docker config errors in workflows
Browse files Browse the repository at this point in the history
squash 10 debugging commits
  • Loading branch information
bennibbelink committed Nov 13, 2023
1 parent c1adf0b commit 65c5d08
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/build_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ jobs:
fail-fast: false
matrix:
ubuntu_versions : [
20.04,
# 20.04,
22.04,
]
pkg_mgr : [
apt,
conda,
# conda,
]
cyclus_tag: [
latest,
Expand All @@ -41,18 +41,15 @@ jobs:
- name: Checkout Cycamore
uses: actions/checkout@v3

- name: Change Home
run: |
echo "HOME=/root" >> "$GITHUB_ENV"
- name: Build Cycamore
run: |
python install.py --prefix=/root/.local -j 2 --build-type=Release --core-version 99999.99999
python install.py --prefix=/root/.local --cyclus-root=/root/.local -j 2 --build-type=Release --core-version 99999.99999
- name: Cycamore Unit Tests
run: |
cycamore_unit_tests
- name: Cycamore Python Tests
run: |
export PYTHONPATH=$(find /root/.local/lib -type d -name 'cyclus-*' -print -quit)
cd tests && python -m pytest

0 comments on commit 65c5d08

Please sign in to comment.