Commit b73f9c30 authored by Nicolas "Norswap" Laurent's avatar Nicolas "Norswap" Laurent Committed by norswap

cmake and pkg-config are preinstalled on CI, but let's be thorough

parent d893ec7e
...@@ -11,10 +11,10 @@ jobs: ...@@ -11,10 +11,10 @@ jobs:
uses: actions/checkout@v3 uses: actions/checkout@v3
with: with:
submodules: true submodules: true
- name: Install Toolchain (Go, Node.js and Make) - name: Install Toolchain
run: | run: |
sudo apt-get update sudo apt-get update
sudo apt-get -y --no-install-recommends install golang-1.16 nodejs make sudo apt-get -y --no-install-recommends install golang-1.16 nodejs make cmake pkg-config
npm install --global pnpm npm install --global pnpm
- name: Build - name: Build
run: make libunicorn minigeth_mips minigeth_prefetch mipsevm nodejs run: make libunicorn minigeth_mips minigeth_prefetch mipsevm nodejs
......
...@@ -11,10 +11,10 @@ jobs: ...@@ -11,10 +11,10 @@ jobs:
uses: actions/checkout@v3 uses: actions/checkout@v3
with: with:
submodules: true submodules: true
- name: Install Toolchain (Go, Node.js and Make) - name: Install Toolchain
run: | run: |
sudo apt-get update sudo apt-get update
sudo apt-get -y --no-install-recommends install golang-1.16 nodejs pnpm make sudo apt-get -y --no-install-recommends install golang-1.16 nodejs make cmake pkg-config
npm install --global pnpm npm install --global pnpm
- name: Build - name: Build
run: make build run: make build
......
...@@ -11,10 +11,10 @@ jobs: ...@@ -11,10 +11,10 @@ jobs:
uses: actions/checkout@v3 uses: actions/checkout@v3
with: with:
submodules: true submodules: true
- name: Install Toolchain (Go, Node.js and Make) - name: Install Toolchain
run: | run: |
sudo apt-get update sudo apt-get update
sudo apt-get -y --no-install-recommends install golang-1.16 nodejs make sudo apt-get -y --no-install-recommends install golang-1.16 nodejs make cmake pkg-config
npm install --global pnpm npm install --global pnpm
- name: Build - name: Build
run: make build run: make build
......
...@@ -12,7 +12,7 @@ jobs: ...@@ -12,7 +12,7 @@ jobs:
- name: Install Toolchain (Node and Make) - name: Install Toolchain (Node and Make)
run: | run: |
sudo apt-get update sudo apt-get update
sudo apt-get -y --no-install-recommends install nodejs make sudo apt-get -y --no-install-recommends install nodejs make cmake pkg-config
npm install --global pnpm npm install --global pnpm
- name: Install Dependencies - name: Install Dependencies
run: make nodejs run: make nodejs
......
...@@ -11,10 +11,10 @@ jobs: ...@@ -11,10 +11,10 @@ jobs:
uses: actions/checkout@v3 uses: actions/checkout@v3
with: with:
submodules: true submodules: true
- name: Install Toolchain (Go & Make) - name: Install Toolchain
run: | run: |
sudo apt-get update sudo apt-get update
sudo apt-get -y --no-install-recommends install golang-1.16 make sudo apt-get -y --no-install-recommends install golang-1.16 make cmake pkg-config
- name: Build minigeth - name: Build minigeth
run: make minigeth_prefetch run: make minigeth_prefetch
- name: Test Minigeth - name: Test Minigeth
......
...@@ -11,10 +11,10 @@ jobs: ...@@ -11,10 +11,10 @@ jobs:
uses: actions/checkout@v3 uses: actions/checkout@v3
with: with:
submodules: true submodules: true
- name: Install Toolchain (Go, Node.js and Make) - name: Install Toolchain
run: | run: |
sudo apt-get update sudo apt-get update
sudo apt-get -y --no-install-recommends install golang-1.16 nodejs make sudo apt-get -y --no-install-recommends install golang-1.16 nodejs make cmake pkg-config
npm install --global pnpm npm install --global pnpm
- name: Build - name: Build
run: make build run: make build
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment