Skip to content

Commit

Permalink
update CI workflow to remove optional ActiveState Perl installation a…
Browse files Browse the repository at this point in the history
…nd force gcc as main compiler
  • Loading branch information
kengggg committed Mar 6, 2025
1 parent 2be8491 commit 2750d1e
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions .github/workflows/primer3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,12 @@ jobs:
- name: Download TDM-GCC Installer
run: |
Invoke-WebRequest -Uri "https://github.com/jmeubank/tdm-gcc/releases/download/v10.3.0-tdm64-2/tdm64-gcc-10.3.0-2.exe" -OutFile "TDM-GCC-Installer.exe"
- name: Install TDM-GCC Silently
run: |
Start-Process -FilePath ".\TDM-GCC-Installer.exe" -ArgumentList "/S" -Wait
# - name: (Optional) Install ActiveState Perl via Chocolatey
# run: choco install activestateperl -y

- name: Compile Primer3
run: |
cd primer3/src
mingw32-make TESTOPTS=--windows
# - name: Run tests (if applicable)
# run: |
# cd primer3/test
# mingw32-make TESTOPTS=--windows
mingw32-make TESTOPTS=--windows CC=gcc

0 comments on commit 2750d1e

Please sign in to comment.