Skip to content

Commit

Permalink
TEMP
Browse files Browse the repository at this point in the history
  • Loading branch information
pazmivaniye committed Jun 16, 2024
1 parent a681a9e commit 121df56
Showing 1 changed file with 16 additions and 14 deletions.
30 changes: 16 additions & 14 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: build
on: [push, pull_request]
jobs:
#windows:
#windows: # VERSION ISSUES W/ TEXLIVE, REPLACE W/ TLMGR LIKE ON MACOS
# runs-on: windows-latest
# defaults:
# run:
Expand Down Expand Up @@ -51,20 +51,22 @@ jobs:
sudo tlmgr install pgfplots
sudo port install ghostscript poppler
- name: Build and Test
run: make -j
run: |
export PATH=/Library/TeX/texbin:$PATH
make -j
- uses: actions/upload-artifact@v4
with:
name: macos-build
path: libpgfplotter.a
#linux:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - name: Install Dependencies
# run: sudo apt install texlive-luatex texlive-latex-extra texlive-fonts-extra texlive-xetex texlive-science ghostscript poppler-utils
# - name: Build and Test
# run: make -j
# - uses: actions/upload-artifact@v4
# with:
# name: linux-build
# path: libpgfplotter.a
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Dependencies
run: sudo apt install texlive-luatex texlive-latex-extra texlive-fonts-extra texlive-xetex texlive-science ghostscript poppler-utils
- name: Build and Test
run: make -j
- uses: actions/upload-artifact@v4
with:
name: linux-build
path: libpgfplotter.a

0 comments on commit 121df56

Please sign in to comment.