소스 검색

build_system: minor changes

Michele Caini 4 년 전
부모
커밋
04a6729963
1개의 변경된 파일9개의 추가작업 그리고 3개의 파일을 삭제
  1. 9 3
      .github/workflows/build.yml

+ 9 - 3
.github/workflows/build.yml

@@ -20,13 +20,19 @@ jobs:
     - uses: actions/checkout@v2
     - name: Install g++-7
       if: ${{ matrix.compiler == 'g++-7' }}
-      run: sudo apt install g++-7
+      run: |
+        sudo apt-get update
+        sudo apt-get install g++-7 -y
     - name: Install g++-8
       if: ${{ matrix.compiler == 'g++-8' }}
-      run: sudo apt install g++-8
+      run: |
+        sudo apt-get update
+        sudo apt-get install g++-8 -y
     - name: Install clang-8
       if: ${{ matrix.compiler == 'clang++-8' }}
-      run: sudo apt install clang-8
+      run: |
+        sudo apt-get update
+        sudo apt-get install clang-8 -y
     - name: Compile tests
       working-directory: build
       env: