Edit file to force workflow run #166
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
paths: | |
- 'dataset/**' | |
- 'scripts/**' | |
- 'source/**' | |
pull_request: | |
paths: | |
- 'dataset/**' | |
- 'scripts/**' | |
- 'source/**' | |
name: Build | |
jobs: | |
download_and_test_windows: | |
runs-on: windows-2022 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Download Release Binaries | |
run: | | |
curl -L -o trimal.zip https://github.com/inab/trimal/releases/download/v1.5.0/trimAl_Windows_x86-64.zip | |
- name: Unzip Binaries | |
run: | | |
powershell -Command "Expand-Archive -Path trimal.zip -DestinationPath ." | |
- name: List Directory Contents | |
run: | | |
dir .\ | |
- name: Verify Binaries | |
run: | | |
# Use PowerShell or native Windows commands to verify binaries | |
Get-Command .\trimal.exe | |
- name: Run generate_trimmed_msas.ps1 | |
run: | | |
powershell -ExecutionPolicy Bypass -File .\scripts\generate_trimmed_msas.ps1 | |
- name: Run compare_trimmed_msas.ps1 | |
run: | | |
powershell -ExecutionPolicy Bypass -File .\scripts\compare_trimmed_msas.ps1 | |
build_and_test_windows: | |
runs-on: windows-2022 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up MSYS2 | |
uses: msys2/setup-msys2@v2 | |
with: | |
msystem: MINGW64 | |
update: true | |
install: >- | |
make | |
mingw-w64-x86_64-gcc | |
file | |
- name: Build trimal for Windows x86_64 | |
run: | | |
cd source | |
make -f makefile.Windows | |
file trimal.exe | |
file readal.exe | |
file statal.exe | |
cd .. | |
./scripts/generate_trimmed_msas.sh | |
./scripts/compare_trimmed_msas.sh |