Skip to content

Commit

Permalink
Rename "compile xyz" steps to "build xyz".
Browse files Browse the repository at this point in the history
We do not always 'compile' the projects, sometimes
just a (ready-made) installer is unpacked.
  • Loading branch information
daute committed Nov 25, 2023
1 parent de50486 commit 5734080
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 20 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/compile_maxima32.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,44 +35,44 @@ jobs:
# command. A simple 'make' (or 'make package' to build the complete
# installer package) works too. The seperate make commands here
# are mostly for a better structured output on Github.
- name: compile tcl
- name: build tcl
run: |
cd maxima-code/crosscompile-windows/build
cmake ..
make tcl
- name: compile tk
- name: build tk
run: |
cd maxima-code/crosscompile-windows/build
make tk
- name: compile clisp
- name: build clisp
run: |
cd maxima-code/crosscompile-windows/build
make clisp
- name: compile sbcl
- name: build sbcl
run: |
cd maxima-code/crosscompile-windows/build
make sbcl
- name: compile gnuplot
- name: build gnuplot
run: |
cd maxima-code/crosscompile-windows/build
make gnuplot
- name: compile vtk
- name: build vtk
run: |
cd maxima-code/crosscompile-windows/build
make vtk
- name: compile texinfo
- name: build texinfo
run: |
cd maxima-code/crosscompile-windows/build
make texinfo
- name: compile maxima
- name: build maxima
run: |
cd maxima-code/crosscompile-windows/build
script -qc /bin/bash -c "make maxima"
- name: compile wxWidgets
- name: build wxWidgets
run: |
cd maxima-code/crosscompile-windows/build
make wxwidgets
- name: compile wxMaxima
- name: build wxMaxima
run: |
cd maxima-code/crosscompile-windows/build
make wxmaxima
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/compile_maxima64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,44 +35,44 @@ jobs:
# command. A simple 'make' (or 'make package' to build the complete
# installer package) works too. The seperate make commands here
# are mostly for a better structured output on Github.
- name: compile tcl
- name: build tcl
run: |
cd maxima-code/crosscompile-windows/build
cmake ..
make tcl
- name: compile tk
- name: build tk
run: |
cd maxima-code/crosscompile-windows/build
make tk
- name: compile clisp
- name: build clisp
run: |
cd maxima-code/crosscompile-windows/build
make clisp
- name: compile sbcl
- name: build sbcl
run: |
cd maxima-code/crosscompile-windows/build
make sbcl
- name: compile gnuplot
- name: build gnuplot
run: |
cd maxima-code/crosscompile-windows/build
make gnuplot
- name: compile vtk
- name: build vtk
run: |
cd maxima-code/crosscompile-windows/build
make vtk
- name: compile texinfo
- name: build texinfo
run: |
cd maxima-code/crosscompile-windows/build
make texinfo
- name: compile maxima
- name: build maxima
run: |
cd maxima-code/crosscompile-windows/build
script -qc /bin/bash -c "make maxima"
- name: compile wxWidgets
- name: build wxWidgets
run: |
cd maxima-code/crosscompile-windows/build
make wxwidgets
- name: compile wxMaxima
- name: build wxMaxima
run: |
cd maxima-code/crosscompile-windows/build
make wxmaxima
Expand Down

0 comments on commit 5734080

Please sign in to comment.