fix ci #130
Workflow file for this run
This file contains 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: clingo | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- v0.** | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
concurrency: | |
group: clingo-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
SPACK_COLOR: always | |
SPACK_BACKTRACE: please | |
jobs: | |
macos_clingo: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] | |
os: ["macos-12", "macos-14"] | |
exclude: | |
- python-version: "3.6" | |
os: "macos-14" | |
- python-version: "3.7" | |
os: "macos-14" | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/checkout@v4 | |
with: | |
repository: spack/spack | |
ref: 540f9eefb70b86c8403868d28f88a68cec585ce3 | |
path: spack | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: system dependencies | |
run: brew install bison | |
- name: configure | |
run: | | |
echo $(brew --prefix bison) | |
export PATH="$(brew --prefix bison)/bin:$PATH" | |
. spack/share/spack/setup-env.sh | |
spack external find --not-buildable cmake bison | |
spack python -c "import archspec.cpu;print(archspec.cpu.host().family)" > target.txt | |
spack config add config:install_tree:padded_length:256 | |
spack config add "packages:all:require:[target=$(cat target.txt)]" | |
spack config blame | |
- name: install | |
run: | | |
. spack/share/spack/setup-env.sh | |
spack python clingo/scripts/install_clingo.py | |
spack buildcache push --unsigned ./binary-mirror clingo-bootstrap | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: clingo_binary_mirror | |
path: binary-mirror | |
manylinux2014: | |
runs-on: ["self-hosted", "Linux"] | |
outputs: | |
spack_manylinux_tag: ${{ fromJSON(steps.docker_meta.outputs.json).tags[0] }} | |
permissions: | |
packages: write | |
steps: | |
- uses: actions/checkout@v4 | |
# Setup tags to be used for docker images | |
- uses: docker/metadata-action@v5 | |
id: docker_meta | |
with: | |
images: ghcr.io/${{ github.repository_owner }}/clingo_manylinux2014 | |
# Login to Github Packages | |
- uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- uses: docker/setup-qemu-action@v3 | |
id: qemu | |
with: | |
platforms: linux/ppc64le,linux/arm64 | |
- uses: docker/setup-buildx-action@v3 | |
# Build and eventually push to registry | |
- uses: docker/build-push-action@v5 | |
with: | |
file: ./clingo/Dockerfile.manylinux2014 | |
platforms: linux/arm64,linux/ppc64le,linux/amd64 | |
cache-from: | | |
ghcr.io/${{ github.repository_owner }}/clingo_manylinux2014:main | |
${{ steps.docker_meta.outputs.tags }} | |
cache-to: type=inline | |
pull: ${{ github.event_name == 'pull_request' }} | |
push: true | |
tags: ${{ steps.docker_meta.outputs.tags }} | |
labels: ${{ steps.docker_meta.outputs.labels }} | |
upload-manylinux2014: | |
runs-on: ubuntu-latest | |
needs: [ manylinux2014 ] | |
env: | |
SPACK_MANYLINUX2014_TAG: ${{ needs.manylinux2014.outputs.spack_manylinux_tag }} | |
steps: | |
- uses: actions/checkout@v4 | |
- run: ./contrib/copy_mirror_manylinux2014.sh | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: clingo_binary_mirror | |
path: binary-mirror | |
clingo_json: | |
runs-on: ubuntu-latest | |
needs: [ upload-manylinux2014, macos_clingo ] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/download-artifact@v3 | |
with: | |
name: clingo_binary_mirror | |
- run: python3 clingo/scripts/clingo_json.py | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: clingo_manifest | |
path: clingo.json |