Skip to content

Commit

Permalink
Use curl instead of wget
Browse files Browse the repository at this point in the history
Contributes to CURA-10831
  • Loading branch information
jellespijker committed Dec 5, 2023
1 parent a7275c1 commit 73c41c8
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/gcodeanalyzer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,8 @@ jobs:
# FIXME: point to `main` once merged
- name: Sync pip requirements
run: wget https://raw.githubusercontent.com/Ultimaker/cura-workflows/CURA-10831/.github/workflows/requirements-runner.txt -O .github/workflows/requirements-runner.txt
run: curl -O https://raw.githubusercontent.com/Ultimaker/cura-workflows/CURA-10831/.github/workflows/requirements-runner.txt
working-directory: .github/workflows

- name: Setup Python and pip
uses: actions/setup-python@v4
Expand All @@ -125,9 +126,10 @@ jobs:
- name: Install Linux system requirements for building
run: |
mkdir runner_scripts
wget https://raw.githubusercontent.com/Ultimaker/cura-workflows/CURA-10831/runner_scripts/ubuntu_setup.sh -O runner_scripts/ubuntu_setup.sh
chmod +x runner_scripts/ubuntu_setup.sh
sudo ./runner_scripts/ubuntu_setup.sh
cd runner_scripts
curl -O https://raw.githubusercontent.com/Ultimaker/cura-workflows/CURA-10831/runner_scripts/ubuntu_setup.sh
chmod +x ubuntu_setup.sh
sudo ./ubuntu_setup.sh
- name: Setup pipeline caches
run: |
Expand Down

0 comments on commit 73c41c8

Please sign in to comment.