Skip to content

Commit

Permalink
Merge pull request #25 from GordonSmith/GRAPHVIZ_2_42_4
Browse files Browse the repository at this point in the history
chore(graphviz): Bump Graphviz version to 2.42.4
  • Loading branch information
GordonSmith authored Apr 6, 2020
2 parents 41fbcc1 + c16cd75 commit 0c73323
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 10 deletions.
1 change: 1 addition & 0 deletions .github/workflows/npmPublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
scope: "@hpcc-js"
- run: npm ci
- run: npm run lint
- run: sudo apt-get update
- run: sudo apt-get install -y git cmake wget
- run: sudo apt-get install -y gcc-multilib g++-multilib pkg-config autoconf bison libtool flex zlib1g-dev
- run: sudo apt-get install -y python2.7 python-pip
Expand Down
12 changes: 5 additions & 7 deletions .github/workflows/testPullRequest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,16 @@ jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [12.x]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
node-version: "12.x"
registry-url: "https://registry.npmjs.org"
scope: "@hpcc-js"
- run: npm ci
- run: npm run lint
- run: sudo apt-get update
- run: sudo apt-get install -y git cmake wget
- run: sudo apt-get install -y gcc-multilib g++-multilib pkg-config autoconf bison libtool flex zlib1g-dev
- run: sudo apt-get install -y python2.7 python-pip
Expand Down
6 changes: 3 additions & 3 deletions scripts/cpp-install-graphviz.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

if [ ! -d "src-graphviz" ]
then
wget -c https://gitlab.com/graphviz/graphviz/-/archive/stable_release_2.42.2/graphviz-stable_release_2.42.2.tar.gz
wget -c https://gitlab.com/graphviz/graphviz/-/archive/stable_release_2.42.4/graphviz-stable_release_2.42.4.tar.gz
mkdir ./src-graphviz
tar -xzf ./graphviz-stable_release_2.42.2.tar.gz -C ./src-graphviz --strip-components=1
rm ./graphviz-stable_release_2.42.2.tar.gz
tar -xzf ./graphviz-stable_release_2.42.4.tar.gz -C ./src-graphviz --strip-components=1
rm ./graphviz-stable_release_2.42.4.tar.gz

# Configure ---
cd ./src-graphviz
Expand Down

0 comments on commit 0c73323

Please sign in to comment.