Skip to content

Try to save tool.log #29

Try to save tool.log

Try to save tool.log #29

Workflow file for this run

name: Conda Build 🐍
on:
# Schedule and workflow_dispatch (manual) only work on default branch
schedule:
- cron: "0 6 * * *" # Fire at 06:00 AM every day
workflow_dispatch:
pull_request:
push:
branches:
- github_action_mac
# - master
release:
types:
- published
permissions:
contents: read # To read the project source code (git)
jobs:
build_conda_pkg:
name: OS=${{ matrix.os }} PY=${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
# - ubuntu-latest
- macos-13
# - macos-14 # This is ARM64
# - macos-14-arm64
# Comma separated list of python versions to test
python-version: ["3.11"] # "3.9",
mpi:
- mpich
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup dependencies
run: |
dev/github-actions/setup-conda.sh ${{ matrix.os }}
with:

Check failure on line 45 in .github/workflows/conda.yaml

View workflow run for this annotation

GitHub Actions / Conda Build 🐍

Invalid workflow file

The workflow is not valid. .github/workflows/conda.yaml (Line: 45, Col: 9): Unexpected value 'with'
name: tool-log
path: tool.log
- name: Build Anaconda package
run: |
dev/jenkins/anaconda.sh
- name: Report Swift/T version info
run: /tmp/swift-t-install/stc/bin/swift-t -v
- name: Check that Swift/T runs
run: /tmp/swift-t-install/stc/bin/swift-t -E 'trace(42);'