Update linux.yml -> add master #8
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: Linux | |
on: | |
push: | |
branches: [ "feature_ooapi", "master" ] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install UnixODBC package | |
run: sudo apt-get install -y unixodbc unixodbc-dev | |
- name: Go to build folder & make | |
working-directory: ${{env.GITHUB_WORKSPACE}} | |
run: | | |
cd Builds/Gcc.lin | |
cp makefile.linux makefile | |
make | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: linux_libs | |
path: ./Builds/Gcc.lin/Release_* |