Skip to content

Update QEMU Makefile to allocate 8GB of memory for node-01 during exe… #5329

Update QEMU Makefile to allocate 8GB of memory for node-01 during exe…

Update QEMU Makefile to allocate 8GB of memory for node-01 during exe… #5329

Workflow file for this run

name: Tests and Coverage
on: [push]
jobs:
daemons:
name: Running Daemon Tests
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.23
uses: actions/setup-go@v1
with:
go-version: 1.23
id: go
- name: Prepare dependencies
run: |
sudo apt-get update
sudo apt-get install -y libjansson-dev libhiredis-dev
- name: Checkout code into the Go module directory
uses: actions/checkout@v4
# - name: Get dependencies
# run: |
# cd zos/pkg
# make getdeps
# env:
# GO111MODULE: on
# - name: Run tests
# run: |
# cd zos/pkg
# make testrace
# env:
# GO111MODULE: on
- name: Build binaries
run: |
cd cmds
make
env:
GO111MODULE: on