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: 13ac1c7aee92
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: 9d0ebd7dc69c
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on May 12, 2021

  1. Copy the full SHA
    9d0ebd7 View commit details
Showing with 11 additions and 0 deletions.
  1. +11 −0 .github/workflows/build.yml
11 changes: 11 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -11,6 +11,11 @@ jobs:
with:
submodules: recursive

- name: Make Source Tarball
shell: bash
working-directory: ${{runner.workspace}}
run: tar -cf source.tar scopehal-apps && gzip -S .gz -9 source.tar

- 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

@@ -38,6 +43,12 @@ jobs:
working-directory: ${{runner.workspace}}/scopehal-apps
run: cd build && make test

- name: Upload Source
uses: actions/upload-artifact@v2
with:
name: glscopeclient-source
path: ${{runner.workspace}}/source.tar.gz

- name: Upload Artifacts
uses: actions/upload-artifact@v2
with: