-
-
Notifications
You must be signed in to change notification settings - Fork 218
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removing configlet lint from critical CI path. (#439)
* Removing configlet lint from critical CI path. * Fixing CMakeLists for new directory structure. * Fixing Windows CI broken path. * Copy tags from exercism/c. * Add missing fields to concept config.json.
- Loading branch information
Showing
3 changed files
with
31 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,25 +3,12 @@ name: CI | |
on: | ||
push: | ||
branches: | ||
- master | ||
- main | ||
pull_request: | ||
branches: | ||
- master | ||
- main | ||
|
||
jobs: | ||
configuration-test: | ||
name: Check Configuration | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected] | ||
- name: Configlet | ||
run: | | ||
bin/fetch-configlet | ||
bin/configlet lint . | ||
bin/check-configlet-fmt.sh | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
linux-min: | ||
name: Linux Min Config | ||
runs-on: ubuntu-16.04 | ||
|
@@ -44,7 +31,7 @@ jobs: | |
|
||
linux-latest: | ||
name: Linux Latest Config | ||
needs: [linux-min, configuration-test] | ||
needs: [linux-min] | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
|
@@ -74,23 +61,23 @@ jobs: | |
|
||
windows: | ||
name: Windows | ||
needs: [linux-min, configuration-test] | ||
needs: [linux-min] | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/[email protected] | ||
- name: Run Tests | ||
shell: powershell | ||
# Delete the exercises that require Boost to avoid issues with Windows setup. | ||
run: | | ||
rm exercises/gigasecond -r | ||
rm exercises/meetup -r | ||
rm exercises/practice/gigasecond -r | ||
rm exercises/practice/meetup -r | ||
cmake . | ||
cmake --build . -- test_hello-world | ||
cmake --build . | ||
mac: | ||
name: MacOS | ||
needs: [linux-min, configuration-test] | ||
needs: [linux-min] | ||
runs-on: macOS-latest | ||
steps: | ||
- uses: actions/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters