Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ngscopeclient/scopehal-apps
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: fba30981bf98
Choose a base ref
...
head repository: ngscopeclient/scopehal-apps
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 111e088f088b
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Oct 21, 2020

  1. Add continuous integration configuration (#238)

    * Add initial .travis.yml file
    
    Add initial Travis CI configuration for Linux
    
    * Update Travis CI Ubuntu version.
    
    The default Ubuntu version (Xenial) used by Travis CI does not have liblxi available.
    
    * Fix build script
    
    * Add experimental Windows build
    
    * Fix syntax issue with .travis.yml
    
    * Add Linux build GitHub Action
    
    * Update linux-build.yml
    
    * Update linux-build.yml
    
    * Update linux-build.yml
    
    * Update linux-build.yml
    
    * Update linux-build.yml
    
    * Update linux-build.yml
    
    * DEBUG - Get directory listing
    
    * Fix working directory for build command
    
    * Recursively checkout submodules
    
    * Delete .travis.yml
    
    * Update and rename linux-build.yml to build.yml
    kench authored Oct 21, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    111e088 View commit details
Showing with 27 additions and 0 deletions.
  1. +27 −0 .github/workflows/build.yml
27 changes: 27 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Build

on: [push]

jobs:
linux:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
with:
submodules: recursive

- name: Install Dependencies
run: sudo apt-get -y install build-essential cmake pkg-config libglm-dev libgtkmm-3.0-dev libsigc++-2.0-dev libyaml-cpp-dev liblxi-dev texlive texlive-fonts-extra libglew-dev

- name: Clone FFTS Repository
run: git clone https://github.com/anthonix/ffts.git /tmp/ffts

- name: Build FFTS Library
shell: bash
run: pushd /tmp/ffts && mkdir build && cd build && cmake ../ && make && sudo make install && popd

- name: Build
shell: bash
working-directory: ${{runner.workspace}}/scopehal-apps
run: mkdir build && cd build && cmake ../ && make