Update all lints and dart_flutter_team_lints dependencies (#161) #40
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
name: native_toolchain_c | |
permissions: read-all | |
on: | |
pull_request: | |
branches: [main] | |
paths: | |
- ".github/workflows/native_toolchain_c.yaml" | |
- "pkgs/native_toolchain_c/**" | |
push: | |
branches: [main] | |
paths: | |
- ".github/workflows/native_toolchain_c.yaml" | |
- "pkgs/native_toolchain_c/**" | |
schedule: | |
- cron: "0 0 * * 0" # weekly | |
jobs: | |
dart-sdk-clang: | |
strategy: | |
matrix: | |
os: [ubuntu] | |
sdk: [stable] | |
package: [native_toolchain_c] | |
runs-on: ${{ matrix.os }}-latest | |
defaults: | |
run: | |
working-directory: pkgs/${{ matrix.package }} | |
steps: | |
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 | |
- uses: dart-lang/setup-dart@8a4b97ea2017cc079571daec46542f76189836b1 | |
with: | |
sdk: ${{ matrix.sdk }} | |
- uses: nttld/setup-ndk@dbacc5871a0fac6eef9a09d2ca86bc8bf79432c3 | |
with: | |
ndk-version: r25b | |
if: ${{ matrix.sdk == 'stable' }} | |
- run: dart pub get | |
- name: Install native toolchains | |
run: sudo apt-get update && sudo apt-get install gcc-i686-linux-gnu gcc-aarch64-linux-gnu gcc-arm-linux-gnueabihf | |
if: ${{ matrix.sdk == 'stable' && matrix.os == 'ubuntu' }} | |
- run: git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git | |
- run: echo "$PWD/depot_tools" >> $GITHUB_PATH | |
- run: mkdir dart-sdk | |
- run: cd dart-sdk && fetch --no-history dart | |
- run: echo "./dart-sdk/sdk/buildtools/linux-x64/clang/bin" >> $GITHUB_PATH | |
- run: clang --version | |
- run: dart test | |
if: ${{ matrix.sdk == 'stable' }} |