Skip to content

Commit

Permalink
Create linux.yml for linux build action
Browse files Browse the repository at this point in the history
  • Loading branch information
irodushka authored Sep 4, 2024
1 parent b7b1716 commit c54f9e6
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Linux

on:
push:
branches: [ "feature_ooapi" ]
#pull_request:
#branches: [ "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
- name: Upload artefacts
- uses: actions/upload-artifact@v4
with:
name: linux_libs
path: ./Builds/Gcc.lin/Release_*

0 comments on commit c54f9e6

Please sign in to comment.