From bb286a92a66fb1a385f8f4f2a664f713c25f164c Mon Sep 17 00:00:00 2001 From: Roberto Aloi Date: Thu, 9 Jan 2025 17:17:36 +0100 Subject: [PATCH] Try fetching hard-coded version of EDB --- .github/workflows/ci.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9729d465b..e72e3cbfa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -175,7 +175,18 @@ jobs: - name: Package eqWAlizer binary into VS Code Extension run: cp eqwalizer/eqwalizer/eqwalizer editors/code/bin - name: Package ELP binary into VS Code Extension - run: cp target/${{ matrix.target}}/release/elp editors/code/bin + run: cp target/${{ matrix.target }}/release/elp editors/code/bin + - name: Fetch EDB escript (if available) + - uses: actions/download-artifact@v4 + with: + name: edb-ubuntu-22.04-otp-${{ matrix.otp-version }}.tar.gz + github-token: ${{ secrets.GITHUB_TOKEN }} + repository: WhatsApp/edb + run-id: 12693790504 + - name: Untar EDB escript + run: tar -xvzf edb.tar.gz + - name: Package EDB escript into VS Code Extension + run: cp edb editors/code/bin - name: Ensure binaries are executable run: chmod +x editors/code/bin/* - name: npm install