Skip to content

Commit

Permalink
Try fetching hard-coded version of EDB
Browse files Browse the repository at this point in the history
  • Loading branch information
robertoaloi committed Jan 9, 2025
1 parent b3f2f7e commit bb286a9
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit bb286a9

Please sign in to comment.