-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #240 from jorisv/topic/pixi
Add pixi support
- Loading branch information
Showing
17 changed files
with
15,572 additions
and
350 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# GitHub syntax highlighting | ||
pixi.lock linguist-language=YAML linguist-generated=true |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
name: CI - OSX/Linux via Pixi | ||
|
||
on: | ||
push: | ||
paths-ignore: | ||
- 'doc/**' | ||
- 'scripts/**' | ||
- '.gitlab-ci.yml' | ||
- '.gitignore' | ||
- '*.md' | ||
- 'CHANGELOG.md' | ||
- 'CITATION.cff' | ||
- 'CITATIONS.bib' | ||
pull_request: | ||
paths-ignore: | ||
- 'doc/' | ||
- 'scripts/' | ||
- '.gitlab-ci.yml' | ||
- '.gitignore' | ||
- '*.md' | ||
- 'CHANGELOG.md' | ||
- 'CITATION.cff' | ||
- 'CITATIONS.bib' | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
aligator-pixi: | ||
name: ${{ matrix.os }} - Env ${{ matrix.environment }} ${{ matrix.build_type }} | ||
runs-on: ${{ matrix.os }} | ||
env: | ||
CCACHE_BASEDIR: "${GITHUB_WORKSPACE}" | ||
CCACHE_DIR: "${GITHUB_WORKSPACE}/.ccache" | ||
CCACHE_COMPRESS: true | ||
CCACHE_COMPRESSLEVEL: 6 | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ubuntu-latest, macos-latest, macos-13] | ||
environment: [all, all-py39] | ||
build_type: [Release, Debug] | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
|
||
- uses: actions/cache@v4 | ||
with: | ||
path: .ccache | ||
key: ccache-macos-linux-pixi-${{ matrix.os }}-${{ matrix.build_type }}-${{ github.sha }} | ||
restore-keys: ccache-macos-linux-pixi-${{ matrix.os }}-${{ matrix.build_type }}- | ||
|
||
- uses: prefix-dev/[email protected] | ||
with: | ||
pixi-version: v0.34.0 | ||
cache: true | ||
environments: ${{ matrix.environment }} | ||
|
||
- name: Build aligator | ||
shell: bash -l {0} | ||
env: | ||
CMAKE_BUILD_PARALLEL_LEVEL: 4 | ||
ALIGATOR_BUILD_TYPE: ${{ matrix.build_type }} | ||
run: | | ||
pixi run -e ${{ matrix.environment }} test | ||
check: | ||
if: always() | ||
name: check-macos-linux-pixi | ||
|
||
needs: | ||
- aligator-pixi | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Decide whether the needed jobs succeeded or failed | ||
uses: re-actors/alls-green@release/v1 | ||
with: | ||
jobs: ${{ toJSON(needs) }} |
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
name: CI - Update Pixi lockfile | ||
permissions: | ||
contents: write | ||
pull-requests: write | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: 0 5 1 * * | ||
|
||
jobs: | ||
pixi-update: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/create-github-app-token@v1 | ||
id: generate-token | ||
with: | ||
app-id: ${{ secrets.APP_ID }} | ||
private-key: ${{ secrets.APP_PRIVATE_KEY }} | ||
|
||
- uses: actions/checkout@v4 | ||
with: | ||
token: ${{ steps.generate-token.outputs.token }} | ||
ref: devel | ||
# Make sure the value of GITHUB_TOKEN will not be persisted in repo's config | ||
persist-credentials: false | ||
|
||
- name: Set up pixi | ||
uses: prefix-dev/[email protected] | ||
with: | ||
run-install: false | ||
|
||
- name: Update lockfile | ||
run: | | ||
set -o pipefail | ||
pixi update --json | pixi exec pixi-diff-to-markdown >> diff.md | ||
- name: Create pull request | ||
uses: peter-evans/create-pull-request@v7 | ||
with: | ||
token: ${{ steps.generate-token.outputs.token }} | ||
commit-message: 'pixi: Update pixi lockfile' | ||
title: Update pixi lockfile | ||
body-path: diff.md | ||
branch: topic/update-pixi | ||
base: devel | ||
labels: pixi | ||
delete-branch: true | ||
add-paths: pixi.lock |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,14 @@ | ||
assets/ | ||
build*/ | ||
!build_scripts/ | ||
*.pyc | ||
**/__pycache__ | ||
*.aux | ||
*.log | ||
.cache/ | ||
|
||
*.mp4 | ||
|
||
# pixi environments | ||
.pixi | ||
*.egg-info |
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
Oops, something went wrong.