Skip to content

Commit

Permalink
Merge pull request #1949 from BeamMW/ubuntu_18_issue
Browse files Browse the repository at this point in the history
Ubuntu 18 issue
  • Loading branch information
Roberrtt authored Jul 24, 2023
2 parents ef0eb95 + 3198093 commit b590ae8
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
# os: [macos-11]
os: [macos-11, ubuntu-20.04, windows-2019]
os: [macos-11, ubuntu-18.04, ubuntu-20.04, windows-2019]

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -48,11 +48,11 @@ jobs:
shell: bash
if: matrix.os == 'ubuntu-18.04'
run: |
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
sudo apt-get update
sudo apt-get install g++-7
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-7 60 --slave /usr/bin/g++ g++ /usr/bin/g++-7
sudo update-alternatives --set gcc "/usr/bin/gcc-7"
sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
sudo apt-get update -y
sudo apt-get install g++-7 -y
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-7 60 --slave /usr/bin/g++ g++ /usr/bin/g++-7
sudo update-alternatives --set gcc "/usr/bin/gcc-7"
- name: Create Build Environment [windows]
shell: bash
Expand Down

0 comments on commit b590ae8

Please sign in to comment.