export ASAN_OPTIONS=detect_container_overflow=0 #87
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
name: Test Ubuntu Installer | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test-installer: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Download Ubuntu installer | |
run: | | |
curl -L -o open-redatam-ubuntu.deb https://github.com/pachadotdev/open-redatam/releases/download/v2.0/open-redatam-ubuntu.deb | |
- name: Install Ubuntu package | |
run: | | |
sudo apt install -y gdebi-core | |
sudo gdebi -n -q open-redatam-ubuntu.deb | |
- name: Verify installation and convert DIC file | |
run: | | |
/usr/local/bin/redatam test/galapagos/cg15.dic test/galapagos/dic-to-csv | |
/usr/local/bin/redatam test/galapagos/cg15.dicX test/galapagos/dicx-to-csv | |
- name: Check conversion results | |
run: | | |
ls -l test/galapagos/dic-to-csv | |
ls -l test/galapagos/dicx-to-csv |