Update artifacts version for manylinux. #9
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: ubuntu | |
on: [push] | |
jobs: | |
build_package: | |
name: Build Tcl extension for Tcl 8 and 9 on ubuntu | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: install Mesa | |
run: | | |
sudo apt-get update | |
sudo apt-get install libgl-dev libglx-dev | |
- name: Run build script | |
run: | | |
bash ./ci/linux/build_linux_tkgl.sh | |
- name: Save artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: TkGL_pkg_linux | |
path: ./dist |