Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBartosz Taudul <wolf.pld@gmail.com>2020-06-27 21:22:10 +0300
committerBartosz Taudul <wolf.pld@gmail.com>2020-06-27 21:37:59 +0300
commit78028deec6c9b5239f46b858592b73fb61fa5ec0 (patch)
tree89aeb4c10e2a2eb0a70f016d7bc30b3cdf47b901 /.github
parent64bcf2893f4c977717a6bd2ff58a0b9e86ee07ac (diff)
Use modern distro.
Apparently "latest" is too hard to comprehend by some people, as it points to 18.04 right now.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/gcc.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/gcc.yml b/.github/workflows/gcc.yml
index c55ef320..1d6a952f 100644
--- a/.github/workflows/gcc.yml
+++ b/.github/workflows/gcc.yml
@@ -13,13 +13,13 @@ jobs:
strategy:
fail-fast: false
matrix:
- os: [ubuntu-latest, macOS-latest]
+ os: [ubuntu-20.04, macOS-latest]
steps:
- uses: actions/checkout@v2
- name: Install linux libraries
- if: ${{ matrix.os == 'ubuntu-latest' }}
- run: sudo apt-get update && sudo apt-get -y install libglfw3-dev libgtk2.0-dev libcapstone-dev
+ if: ${{ matrix.os == 'ubuntu-20.04' }}
+ run: sudo apt-get update && sudo apt-get -y install libglfw3-dev libgtk2.0-dev libcapstone-dev libtbb-dev
- name: Install macos libraries
if: ${{ matrix.os == 'macOS-latest' }}
run: brew install capstone tbb pkg-config glfw