Skip to content

Commit

Permalink
Fix build config for GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
kartik-s committed Dec 18, 2024
1 parent df2122f commit d313dc5
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
LD_LIBRARY_PATH: ${{ github.workspace }}/../sbcl/src/runtime
run: |
conda install -y conda-build
conda build recipe --output-folder conda-bld -e recipe/ci_build_config.yaml
conda build recipe --output-folder conda-bld
conda install -c ${{ github.workspace }}/conda-bld/ sbcl-librarian
- name: set environment variables
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
DYLD_LIBRARY_PATH: ${{ github.workspace }}/../sbcl/src/runtime
run: |
conda install -y conda-build
conda build recipe --output-folder conda-bld -e recipe/ci_build_config.yaml
conda build recipe --output-folder conda-bld
conda install -c ${{ github.workspace }}/conda-bld/ sbcl-librarian
- name: set environment variables
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ jobs:
shell: pwsh
run: |
conda install conda-build
conda build recipe --output-folder conda-bld -e recipe/ci_build_config.yaml
conda install -c ${{ github.workspace }}/conda-bld/ sbcl-librarian python
conda build recipe --output-folder conda-bld
conda install -c ${{ github.workspace }}/conda-bld/ sbcl-librarian
- name: set environment variables
shell: pwsh
run: |
Expand Down
7 changes: 0 additions & 7 deletions recipe/ci_build_config.yaml

This file was deleted.

4 changes: 2 additions & 2 deletions recipe/conda_build_config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
python:
- 3.10
- 3.11
- 3.10 # [not os.environ['GITHUB_ACTIONS']]
- 3.11 # [not os.environ['GITHUB_ACTIONS']]
- 3.12

c_compiler: # [win]
Expand Down

0 comments on commit d313dc5

Please sign in to comment.