diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 12 | ||||
-rw-r--r-- | .github/workflows/nightly.yml | 12 |
2 files changed, 12 insertions, 12 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 32f82ae..0e1c91d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,10 +15,10 @@ jobs: steps: - - name: Recursive Git Clone + - name: Git Clone uses: actions/checkout@v2 with: - submodules: recursive + submodules: true - name: Update Repositories run: sudo apt-get update @@ -59,10 +59,10 @@ jobs: steps: - - name: Recursive Git Clone + - name: Git Clone uses: actions/checkout@v2 with: - submodules: recursive + submodules: true # NOTE: macOS already ships with ncurses and # XCode already comes with the autotools. @@ -99,10 +99,10 @@ jobs: steps: - - name: Recursive Git Clone + - name: Git Clone uses: actions/checkout@v2 with: - submodules: recursive + submodules: true - name: Set Up Shell run: echo C:\msys64\usr\bin\ | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 85912c5..6e131fd 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -16,10 +16,10 @@ jobs: steps: - - name: Recursive Git Clone + - name: Git Clone uses: actions/checkout@v2 with: - submodules: recursive + submodules: true - name: Update Repositories run: sudo apt-get update @@ -65,10 +65,10 @@ jobs: steps: - - name: Recursive Git Clone + - name: Git Clone uses: actions/checkout@v2 with: - submodules: recursive + submodules: true - name: Set Up Shell run: echo C:\msys64\usr\bin\ | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append @@ -147,10 +147,10 @@ jobs: steps: - - name: Recursive Git Clone + - name: Git Clone uses: actions/checkout@v2 with: - submodules: recursive + submodules: true - name: Set Up Shell run: echo C:\msys64\usr\bin\ | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append |