This repository was archived by the owner on Nov 24, 2024. It is now read-only.
ci-ifcopenshell-conda-daily-v0.8.0 #689
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: ci-ifcopenshell-conda-daily-v0.8.0 | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| # ┌───────────── minute (0 - 59) | |
| # │ ┌───────────── hour (0 - 23) | |
| # │ │ ┌───────────── day of the month (1 - 31) | |
| # │ │ │ ┌───────────── month (1 - 12 or JAN-DEC) | |
| # │ │ │ │ ┌───────────── day of the week (0 - 6 or SUN-SAT) | |
| # * * * * * | |
| - cron: "49 23 * * *" # 11min before utc midnight every day | |
| jobs: | |
| activate: | |
| runs-on: ubuntu-latest | |
| if: | | |
| github.repository == 'IfcOpenShell/IfcOpenShell' | |
| outputs: | |
| version: ${{ steps.version.outputs.version }} | |
| date: ${{ steps.date.outputs.date }} | |
| verdate: ${{ steps.verdate.outputs.verdate }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set env | |
| run: echo ok go | |
| - name: Get current version | |
| id: version | |
| run: echo "version=$(cat VERSION)" >> $GITHUB_OUTPUT | |
| - name: Get current date | |
| id: date | |
| run: echo "date=$(date +'%y%m%d')" >> $GITHUB_OUTPUT | |
| - name: Version + date str | |
| id: verdate | |
| run: echo "verdate='${{ steps.version.outputs.version }}alpha${{ steps.date.outputs.date }}'" >> $GITHUB_OUTPUT | |
| test: | |
| name: ${{ matrix.platform.distver }}-${{ matrix.pyver.name }}-${{ matrix.variant }} | |
| needs: activate | |
| runs-on: ${{ matrix.platform.distver }} | |
| defaults: | |
| run: | |
| shell: bash -l {0} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| variant: [novtk, all] | |
| pyver: [ | |
| # { name: py311, distver: '3.11'}, | |
| { name: py312, distver: '3.12'} | |
| ] | |
| platform: [ | |
| { name: win, distver: windows-latest, pkg_dir: 'win-64' }, | |
| { name: linux, distver: ubuntu-latest, pkg_dir: 'linux-64' }, | |
| { name: macOS, distver: macos-latest, pkg_dir: 'osx-64' } | |
| ] | |
| steps: | |
| - name: Set up swap space | |
| if: runner.os == 'Linux' | |
| uses: pierotofy/[email protected] | |
| with: | |
| swap-size-gb: 10 | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Download and extract MacOSX SDK | |
| if: ${{ runner.os == 'macOS' }} | |
| run: | | |
| curl -L https://github.com/phracker/MacOSX-SDKs/releases/download/11.3/MacOSX10.13.sdk.tar.xz | tar -xvJf - -C /Users/runner/work/ | |
| - uses: mamba-org/setup-micromamba@v1 # https://github.com/mamba-org/setup-micromamba | |
| with: | |
| environment-name: test-env | |
| create-args: >- | |
| python=3.11 | |
| anaconda-client | |
| boa | |
| - name: create conda package dist dir | |
| run: | | |
| mkdir -p ${{ github.workspace }}/dist | |
| - name: build & test ifcopenshell | |
| run: | | |
| conda mambabuild . --python ${{ matrix.pyver.distver }} --no-remove-work-dir --output-folder '${{ github.workspace }}/dist' --variants='{variant: ${{ matrix.variant }}}' | |
| working-directory: ./conda | |
| env: | |
| VERSION_OVERRIDE: ${{ needs.activate.outputs.verdate }} | |
| - name: upload to anaconda | |
| if: ${{ matrix.platform.name == 'win' }} | |
| run: | | |
| anaconda -t ${{ secrets.ANACONDA_TOKEN }} upload --force --user ifcopenshell '${{ github.workspace }}/dist/${{ matrix.platform.pkg_dir }}/*.tar.bz2' | |
| - name: upload to anaconda | |
| if: ${{ matrix.platform.name != 'win' }} | |
| run: | | |
| anaconda -t ${{ secrets.ANACONDA_TOKEN }} upload --force --user ifcopenshell ${{ github.workspace }}/dist/${{ matrix.platform.pkg_dir }}/*.tar.bz2 |