Skip to content

Commit

Permalink
Try to fix build in macOS CI
Browse files Browse the repository at this point in the history
  • Loading branch information
petervdonovan committed May 22, 2024
1 parent 3e14417 commit bcfe9fa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/actions/build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ runs:
echo $JAVA_HOME
working-directory: lingua-franca
shell: bash
- name: Install the wasm-pack dev dependency globally
run: npm install -g wasm-pack
shell: bash
- name: Setup Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: clippy
- name: Install the wasm-pack dev dependency globally
run: cargo install wasm-pack
shell: bash
- name: Build the VS Code extension
run: npm install --ignore-scripts && npm run compile
shell: bash
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dependency-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
partial: true
- name: Uninstall dependencies
run: |
python3 -m pip uninstall -y pylint
python3 -m pip uninstall -y pylint --break-system-packages
- name: Downgrade dependencies
run: |
pip install -I pylint==2.10.0
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
partial: true
- name: Uninstall dependencies
run: |
python3 -m pip uninstall -y pylint
python3 -m pip uninstall -y pylint --break-system-packages
- name: Run tests (Linux)
run: xvfb-run --auto-servernum --server-args="-screen 0 1280x960x24" -- npm run test-dependencies-missing-extended
if: ${{ runner.os == 'Linux' }}
Expand Down

0 comments on commit bcfe9fa

Please sign in to comment.