From a5a218cc3992dc4dc9e951846650ff03806be62c Mon Sep 17 00:00:00 2001 From: Jean Privat Date: Mon, 24 Jun 2024 07:21:08 -0400 Subject: [PATCH] wip --- .github/workflows/makefile.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/makefile.yml b/.github/workflows/makefile.yml index 18299cd775..8bd6403a67 100644 --- a/.github/workflows/makefile.yml +++ b/.github/workflows/makefile.yml @@ -46,9 +46,10 @@ jobs: steps: - uses: actions/checkout@v4 - name: Install dependencies - run: sudo apt-get update && sudo apt-get install -y build-essential ccache libgc-dev graphviz libunwind-dev libreadline-dev pkg-config + run: sudo apt-get update && sudo apt-get install -y build-essential ccache libgc-dev graphviz libunwind-dev libreadline-dev pkg-config libcurl4-openssl-dev libevent-dev - uses: actions/download-artifact@v4 - run: chmod +x bin/* + - run: make src/version.nit - name: Run tests run: cd tests && make - uses: actions/upload-artifact@v4 @@ -77,7 +78,7 @@ jobs: run: sudo apt-get update && sudo apt-get install -y build-essential ccache libgc-dev graphviz libunwind-dev libreadline-dev pkg-config - uses: actions/download-artifact@v4 - run: chmod +x bin/* - - run: make test-contrib + - run: 'PATH=$PWD/bin:$PATH make test-contrib' bootstrap-full: runs-on: ubuntu-latest