change pdb url to https, etc #76
Workflow file for this run
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: Build and release | |
on: | |
push: | |
# branches-ignore: | |
# - '**' | |
############################################### | |
jobs: | |
build_posix: | |
name: '${{ matrix.name }}' | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- os: ubuntu-22.04 | |
name: "Ubuntu 22 x64" | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
lfs: true | |
- name: Run sccache-cache | |
uses: mozilla-actions/[email protected] | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- name: Show build env versions | |
shell: bash | |
run: | | |
set -eux | |
uname -a | |
gcc --version | |
python3 --version | |
python3 -m pip --version | |
- name: Download deplibs | |
uses: ./build_scripts/download_deplibs | |
with: | |
basedir: ${{ github.workspace }}/target | |
- name: Build libcuemol2 | |
uses: ./build_scripts/build_libcuemol2_posix | |
with: | |
basedir: ${{ github.workspace }}/target | |
- name: Build node.js addon | |
uses: ./build_scripts/build_nodejs_posix | |
with: | |
basedir: ${{ github.workspace }}/target | |
- name: Build python module | |
uses: ./build_scripts/build_pymod_posix | |
with: | |
basedir: ${{ github.workspace }}/target | |
- name: Build cuetty | |
uses: ./build_scripts/build_cuetty_posix | |
with: | |
basedir: ${{ github.workspace }}/target | |
- name: Check cuetty run | |
shell: bash | |
run: | | |
set -eux | |
BASEDIR=${{ github.workspace }}/target | |
ls -la $BASEDIR/cuemol2/bin/cuetty | |
ldd $BASEDIR/cuemol2/bin/cuetty | |
env LD_LIBRARY_PATH=$BASEDIR/cuemol2/lib $BASEDIR/cuemol2/bin/cuetty | |