Skip to content

Commit

Permalink
Merge branch 'main' into fix/crlf-to-lf
Browse files Browse the repository at this point in the history
  • Loading branch information
atsansone authored Aug 26, 2023
2 parents deb67ff + e9ebbf3 commit 0a78c2e
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
branch: stable
experimental: false
steps:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744
with:
submodules: recursive
- name: Test
Expand All @@ -48,7 +48,7 @@ jobs:
&& github.ref == 'refs/heads/main'
&& github.repository == 'flutter/website'
steps:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744
with:
submodules: recursive
- name: Build site and check links
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scorecards-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

steps:
- name: "Checkout code"
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744
with:
persist-credentials: false

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
if: ${{ github.ref != 'refs/heads/main' }}
steps:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744
with:
submodules: recursive
- name: Build site and check links
Expand Down
2 changes: 1 addition & 1 deletion examples/codelabs
Submodule codelabs updated 324 files
2 changes: 1 addition & 1 deletion src/cookbook/testing/unit/mocking.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ void main() {
Next, generate the mocks running the following command:

```terminal
$ flutter pub run build_runner build
$ dart run build_runner build
```

## 4. Write a test for each condition
Expand Down
17 changes: 12 additions & 5 deletions src/get-started/install/_linux-desktop-setup.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,19 @@
## Linux setup
## Linux Setup

### Additional Linux requirements
### Linux Prerequisites

For Linux desktop development,
you need the following in addition to the Flutter SDK:
To develop Flutter apps on Linux, install the following tools:

- [Clang](https://clang.llvm.org/)
- [CMake](https://cmake.org/)
- [GTK development headers](https://developer.gnome.org/gtk3/3.2/gtk-getting-started.html)
- [Ninja build](https://ninja-build.org/)
- [pkg-config](https://www.freedesktop.org/wiki/Software/pkg-config/)
- [liblzma-dev](https://packages.debian.org/sid/liblzma-dev) (This might be necessary in some cases)

{% include docs/linux-requirements-list.md %}

Run the following command

{% include docs/linux-requirements-command.md %}
{% include docs/linux-requirements-command.md %}

2 changes: 1 addition & 1 deletion src/packages-and-plugins/developing-packages.md
Original file line number Diff line number Diff line change
Expand Up @@ -733,7 +733,7 @@ To avoid writing these by hand, they are generated from the header file
Regenerate the bindings by running the following:

```terminal
$ flutter pub run ffigen --config ffigen.yaml
$ dart run ffigen --config ffigen.yaml
```

### Step 4: Invoking native code
Expand Down

0 comments on commit 0a78c2e

Please sign in to comment.