Skip to content

Commit 8b03f67

Browse files
chadaustinfacebook-github-bot
authored andcommitted
regenerate GitHub actions for all projects (#138)
Summary: X-link: facebook/openr#138 X-link: facebook/watchman#1049 Pull Request resolved: #515 After D38831140 (aa83449), `bison` no longer needs to be fetched by most projects. Reviewed By: vitaut Differential Revision: D38877152 fbshipit-source-id: 3b05f6c117918452373d430121dca461595663f3
1 parent c51d6f2 commit 8b03f67

File tree

3 files changed

+13
-25
lines changed

3 files changed

+13
-25
lines changed

.github/workflows/getdeps_linux.yml

+13-17
Original file line numberDiff line numberDiff line change
@@ -51,22 +51,20 @@ jobs:
5151
run: python3 build/fbcode_builder/getdeps.py fetch --no-tests automake
5252
- name: Fetch libtool
5353
run: python3 build/fbcode_builder/getdeps.py fetch --no-tests libtool
54-
- name: Fetch bison
55-
run: python3 build/fbcode_builder/getdeps.py fetch --no-tests bison
5654
- name: Fetch libsodium
5755
run: python3 build/fbcode_builder/getdeps.py fetch --no-tests libsodium
58-
- name: Fetch xz
59-
run: python3 build/fbcode_builder/getdeps.py fetch --no-tests xz
60-
- name: Fetch folly
61-
run: python3 build/fbcode_builder/getdeps.py fetch --no-tests folly
62-
- name: Fetch fizz
63-
run: python3 build/fbcode_builder/getdeps.py fetch --no-tests fizz
6456
- name: Fetch libffi
6557
run: python3 build/fbcode_builder/getdeps.py fetch --no-tests libffi
6658
- name: Fetch ncurses
6759
run: python3 build/fbcode_builder/getdeps.py fetch --no-tests ncurses
6860
- name: Fetch python
6961
run: python3 build/fbcode_builder/getdeps.py fetch --no-tests python
62+
- name: Fetch xz
63+
run: python3 build/fbcode_builder/getdeps.py fetch --no-tests xz
64+
- name: Fetch folly
65+
run: python3 build/fbcode_builder/getdeps.py fetch --no-tests folly
66+
- name: Fetch fizz
67+
run: python3 build/fbcode_builder/getdeps.py fetch --no-tests fizz
7068
- name: Fetch wangle
7169
run: python3 build/fbcode_builder/getdeps.py fetch --no-tests wangle
7270
- name: Build ninja
@@ -105,26 +103,24 @@ jobs:
105103
run: python3 build/fbcode_builder/getdeps.py build --no-tests automake
106104
- name: Build libtool
107105
run: python3 build/fbcode_builder/getdeps.py build --no-tests libtool
108-
- name: Build bison
109-
run: python3 build/fbcode_builder/getdeps.py build --no-tests bison
110106
- name: Build libsodium
111107
run: python3 build/fbcode_builder/getdeps.py build --no-tests libsodium
112-
- name: Build xz
113-
run: python3 build/fbcode_builder/getdeps.py build --no-tests xz
114-
- name: Build folly
115-
run: python3 build/fbcode_builder/getdeps.py build --no-tests folly
116-
- name: Build fizz
117-
run: python3 build/fbcode_builder/getdeps.py build --no-tests fizz
118108
- name: Build libffi
119109
run: python3 build/fbcode_builder/getdeps.py build --no-tests libffi
120110
- name: Build ncurses
121111
run: python3 build/fbcode_builder/getdeps.py build --no-tests ncurses
122112
- name: Build python
123113
run: python3 build/fbcode_builder/getdeps.py build --no-tests python
114+
- name: Build xz
115+
run: python3 build/fbcode_builder/getdeps.py build --no-tests xz
116+
- name: Build folly
117+
run: python3 build/fbcode_builder/getdeps.py build --no-tests folly
118+
- name: Build fizz
119+
run: python3 build/fbcode_builder/getdeps.py build --no-tests fizz
124120
- name: Build wangle
125121
run: python3 build/fbcode_builder/getdeps.py build --no-tests wangle
126122
- name: Build fbthrift
127-
run: python3 build/fbcode_builder/getdeps.py build --allow-system-packages --src-dir=. fbthrift --project-install-prefix fbthrift:/usr/local
123+
run: python3 build/fbcode_builder/getdeps.py build --src-dir=. fbthrift --project-install-prefix fbthrift:/usr/local
128124
- name: Copy artifacts
129125
run: python3 build/fbcode_builder/getdeps.py fixup-dyn-deps --strip --src-dir=. fbthrift _artifacts/linux --project-install-prefix fbthrift:/usr/local --final-install-prefix /usr/local
130126
- uses: actions/upload-artifact@v2

.github/workflows/getdeps_mac.yml

-4
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,6 @@ jobs:
5151
run: python3 build/fbcode_builder/getdeps.py fetch --no-tests automake
5252
- name: Fetch libtool
5353
run: python3 build/fbcode_builder/getdeps.py fetch --no-tests libtool
54-
- name: Fetch bison
55-
run: python3 build/fbcode_builder/getdeps.py fetch --no-tests bison
5654
- name: Fetch libsodium
5755
run: python3 build/fbcode_builder/getdeps.py fetch --no-tests libsodium
5856
- name: Fetch xz
@@ -99,8 +97,6 @@ jobs:
9997
run: python3 build/fbcode_builder/getdeps.py build --no-tests automake
10098
- name: Build libtool
10199
run: python3 build/fbcode_builder/getdeps.py build --no-tests libtool
102-
- name: Build bison
103-
run: python3 build/fbcode_builder/getdeps.py build --no-tests bison
104100
- name: Build libsodium
105101
run: python3 build/fbcode_builder/getdeps.py build --no-tests libsodium
106102
- name: Build xz

.github/workflows/getdeps_windows.yml

-4
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ jobs:
2222
- name: Disable autocrlf
2323
run: git config --system core.autocrlf false
2424
- uses: actions/checkout@v2
25-
- name: Fetch bison
26-
run: python build/fbcode_builder/getdeps.py fetch --no-tests bison
2725
- name: Fetch libsodium
2826
run: python build/fbcode_builder/getdeps.py fetch --no-tests libsodium
2927
- name: Fetch ninja
@@ -64,8 +62,6 @@ jobs:
6462
run: python build/fbcode_builder/getdeps.py fetch --no-tests fizz
6563
- name: Fetch wangle
6664
run: python build/fbcode_builder/getdeps.py fetch --no-tests wangle
67-
- name: Build bison
68-
run: python build/fbcode_builder/getdeps.py build --no-tests bison
6965
- name: Build libsodium
7066
run: python build/fbcode_builder/getdeps.py build --no-tests libsodium
7167
- name: Build ninja

0 commit comments

Comments
 (0)