Skip to content

Commit

Permalink
0.21.2
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianinsaval committed Nov 13, 2023
1 parent 1b62488 commit 080c204
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .cirrus.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
env:
DEPLOY_RELEASE: weekly-builds
DEPLOY_RELEASE: 0.21.2
GH_TOKEN: ENCRYPTED[7a45c1bfc23b47bdf2bf67d0e5936e16314c88d0ecc3932c44e7c14df46b763362815f2522305c5c42ce09f35a219b1c]
TARGET_REPO: $CIRRUS_REPO_FULL_NAME

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/freecad_bundle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
fail-fast: false
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
tag: ["weekly-builds"]
tag: ["0.21.2"]
include:
- os: windows-latest
bundle_dir: conda/win
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/source_creation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
tag: ["weekly-builds"]
branch: ["main"]
tag: ["0.21.2"]
branch: ["0.21.2"]

steps:
- name: Run a multi-line script
Expand Down
4 changes: 2 additions & 2 deletions conda/linux/create_bundle.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ fi
conda_env="AppDir/usr"
echo -e "\nCreate the environment"

packages="freecad=*.pre occt vtk python=3.10 blas=*=openblas numpy \
packages="freecad=0.21.2 occt vtk python=3.10 blas=*=openblas numpy \
matplotlib-base scipy sympy pandas six pyyaml pycollada lxml \
xlutils olefile requests blinker opencv qt.py nine docutils"
if [[ "$ARCH" = "x86_64" ]]; then
packages=${packages}" calculix opencamlib ifcopenshell appimage-updater-bridge"
fi

mamba create -p ${conda_env} ${packages} \
--copy -c freecad/label/dev -c conda-forge -y
--copy -c freecad -c conda-forge -y

mamba run -p ${conda_env} python ../scripts/get_freecad_version.py
read -r version_name < bundle_name.txt
Expand Down
4 changes: 2 additions & 2 deletions conda/osx/create_bundle.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ conda_env="APP/FreeCAD.app/Contents/Resources"

mamba create \
-p ${conda_env} \
freecad=*.pre occt vtk python=3.10 calculix blas=*=openblas \
freecad=0.21.2 occt vtk python=3.10 calculix blas=*=openblas \
numpy matplotlib-base scipy sympy pandas six \
pyyaml jinja2 opencamlib ifcopenshell \
pycollada lxml xlutils olefile requests \
blinker opencv qt.py nine docutils \
--copy -c freecad/label/dev -c conda-forge -y
--copy -c freecad -c conda-forge -y


mamba run -p ${conda_env} python ../scripts/get_freecad_version.py
Expand Down
4 changes: 2 additions & 2 deletions conda/win/create_bundle.bat
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ mkdir %copy_dir%

call mamba create ^
-p %conda_env% ^
freecad=*.pre python=3.10 occt vtk libredwg calculix gmsh ^
freecad=0.21.2 python=3.10 occt vtk libredwg calculix gmsh ^
numpy matplotlib-base scipy sympy pandas six ^
pyyaml opencamlib ifcopenshell ^
libredwg pycollada lxml xlutils olefile requests ^
blinker opencv qt.py nine docutils ^
--copy ^
-c freecad/label/dev ^
-c freecad ^
-c conda-forge ^
-y

Expand Down

0 comments on commit 080c204

Please sign in to comment.