Skip to content

Commit 6abaff9

Browse files
updated workflow files
1 parent 6197de6 commit 6abaff9

6 files changed

+35
-23
lines changed

.github/workflows/build-aarch64-generic-jammy.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
name: Build-aarch64_Linux-Generic-Jammy
22
on:
33
workflow_dispatch:
4-
push:
5-
branches:
6-
- main
74
pull_request:
85
branches:
96
- main
@@ -24,7 +21,13 @@ jobs:
2421
- run: sudo apt-get remove gcc g++
2522

2623
- name: Install prerequisite packages (Bazel & zip)
27-
run: sudo apt install apt-transport-https curl gnupg gcc-11 g++-11 -y && curl -fsSL https://bazel.build/bazel-release.pub.gpg | gpg --dearmor >bazel-archive-keyring.gpg && sudo mv bazel-archive-keyring.gpg /usr/share/keyrings && echo "deb [arch=amd64 signed-by=/usr/share/keyrings/bazel-archive-keyring.gpg] https://storage.googleapis.com/bazel-apt stable jdk1.8" | sudo tee /etc/apt/sources.list.d/bazel.list && sudo apt update && sudo apt-get -y install zip bazel-6.5.0
24+
run: |
25+
sudo apt install apt-transport-https curl gnupg gcc-11 g++-11 -y
26+
curl -fsSL https://bazel.build/bazel-release.pub.gpg | gpg --dearmor >bazel-archive-keyring.gpg
27+
sudo mv bazel-archive-keyring.gpg /usr/share/keyrings
28+
echo "deb [arch=amd64 signed-by=/usr/share/keyrings/bazel-archive-keyring.gpg] https://storage.googleapis.com/bazel-apt stable jdk1.8" | sudo tee /etc/apt/sources.list.d/bazel.list
29+
sudo apt update
30+
sudo apt-get -y install zip bazel-6.5.0
2831
2932
- name: Clone the TensorFlow repository
3033
run: git clone https://github.com/tensorflow/tensorflow

.github/workflows/build-aarch64-generic-noble.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
name: Build-aarch64_Linux-Generic-Noble
22
on:
33
workflow_dispatch:
4-
push:
5-
branches:
6-
- main
74
pull_request:
85
branches:
96
- main
@@ -22,7 +19,13 @@ jobs:
2219
- run: sudo apt-get remove gcc g++
2320

2421
- name: Install prerequisite packages (Bazel & zip)
25-
run: sudo apt install apt-transport-https curl gnupg gcc-13 g++-13 -y && curl -fsSL https://bazel.build/bazel-release.pub.gpg | gpg --dearmor >bazel-archive-keyring.gpg && sudo mv bazel-archive-keyring.gpg /usr/share/keyrings && echo "deb [arch=amd64 signed-by=/usr/share/keyrings/bazel-archive-keyring.gpg] https://storage.googleapis.com/bazel-apt stable jdk1.8" | sudo tee /etc/apt/sources.list.d/bazel.list && sudo apt update && sudo apt-get -y install zip bazel-6.5.0
22+
run: |
23+
sudo apt install apt-transport-https curl gnupg gcc-13 g++-13 -y
24+
curl -fsSL https://bazel.build/bazel-release.pub.gpg | gpg --dearmor >bazel-archive-keyring.gpg
25+
sudo mv bazel-archive-keyring.gpg /usr/share/keyrings
26+
echo "deb [arch=amd64 signed-by=/usr/share/keyrings/bazel-archive-keyring.gpg] https://storage.googleapis.com/bazel-apt stable jdk1.8" | sudo tee /etc/apt/sources.list.d/bazel.list
27+
sudo apt update
28+
sudo apt-get -y install zip bazel-6.5.0
2629
2730
- name: Clone the TensorFlow repository
2831
run: git clone https://github.com/tensorflow/tensorflow

.github/workflows/build-x86_64-avx2-jammy.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
name: Build-x86_64-Linux-AVX2-Jammy
22
on:
33
workflow_dispatch:
4-
push:
5-
branches:
6-
- main
74
pull_request:
85
branches:
96
- main
@@ -22,7 +19,13 @@ jobs:
2219
- run: sudo apt-get remove gcc g++
2320

2421
- name: Install prerequisite packages (Bazel & zip)
25-
run: sudo apt install apt-transport-https curl gnupg gcc-11 g++-11 -y && curl -fsSL https://bazel.build/bazel-release.pub.gpg | gpg --dearmor >bazel-archive-keyring.gpg && sudo mv bazel-archive-keyring.gpg /usr/share/keyrings && echo "deb [arch=amd64 signed-by=/usr/share/keyrings/bazel-archive-keyring.gpg] https://storage.googleapis.com/bazel-apt stable jdk1.8" | sudo tee /etc/apt/sources.list.d/bazel.list && sudo apt update && sudo apt-get -y install zip bazel-6.5.0
22+
run: |
23+
sudo apt install apt-transport-https curl gnupg gcc-11 g++-11 -y
24+
curl -fsSL https://bazel.build/bazel-release.pub.gpg | gpg --dearmor >bazel-archive-keyring.gpg
25+
sudo mv bazel-archive-keyring.gpg /usr/share/keyrings
26+
echo "deb [arch=amd64 signed-by=/usr/share/keyrings/bazel-archive-keyring.gpg] https://storage.googleapis.com/bazel-apt stable jdk1.8" | sudo tee /etc/apt/sources.list.d/bazel.list
27+
sudo apt update
28+
sudo apt-get -y install zip bazel-6.5.0
2629
2730
- name: Clone the TensorFlow repository
2831
run: git clone https://github.com/tensorflow/tensorflow

.github/workflows/build-x86_64-avx2-noble.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
name: Build-x86_64-Linux-AVX2-Noble
22
on:
33
workflow_dispatch:
4-
push:
5-
branches:
6-
- main
74
pull_request:
85
branches:
96
- main
@@ -22,7 +19,13 @@ jobs:
2219
- run: sudo apt-get remove gcc g++
2320

2421
- name: Install prerequisite packages (Bazel & zip)
25-
run: sudo apt install apt-transport-https curl gnupg gcc-13 g++-13 -y && curl -fsSL https://bazel.build/bazel-release.pub.gpg | gpg --dearmor >bazel-archive-keyring.gpg && sudo mv bazel-archive-keyring.gpg /usr/share/keyrings && echo "deb [arch=amd64 signed-by=/usr/share/keyrings/bazel-archive-keyring.gpg] https://storage.googleapis.com/bazel-apt stable jdk1.8" | sudo tee /etc/apt/sources.list.d/bazel.list && sudo apt update && sudo apt-get -y install zip bazel-6.5.0
22+
run: |
23+
sudo apt install apt-transport-https curl gnupg gcc-13 g++-13 -y
24+
curl -fsSL https://bazel.build/bazel-release.pub.gpg | gpg --dearmor >bazel-archive-keyring.gpg
25+
sudo mv bazel-archive-keyring.gpg /usr/share/keyrings
26+
echo "deb [arch=amd64 signed-by=/usr/share/keyrings/bazel-archive-keyring.gpg] https://storage.googleapis.com/bazel-apt stable jdk1.8" | sudo tee /etc/apt/sources.list.d/bazel.list
27+
sudo apt update
28+
sudo apt-get -y install zip bazel-6.5.0
2629
2730
- name: Clone the TensorFlow repository
2831
run: git clone https://github.com/tensorflow/tensorflow

.github/workflows/build-x86_64-generic-jammy.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
name: Build-x86_64-Linux-Generic-Jammy
22
on:
33
workflow_dispatch:
4-
push:
5-
branches:
6-
- main
74
pull_request:
85
branches:
96
- main
@@ -22,7 +19,13 @@ jobs:
2219
- run: sudo apt-get remove gcc g++
2320

2421
- name: Install prerequisite packages (Bazel & zip)
25-
run: sudo apt install apt-transport-https curl gnupg gcc-11 g++-11 -y && curl -fsSL https://bazel.build/bazel-release.pub.gpg | gpg --dearmor >bazel-archive-keyring.gpg && sudo mv bazel-archive-keyring.gpg /usr/share/keyrings && echo "deb [arch=amd64 signed-by=/usr/share/keyrings/bazel-archive-keyring.gpg] https://storage.googleapis.com/bazel-apt stable jdk1.8" | sudo tee /etc/apt/sources.list.d/bazel.list && sudo apt update && sudo apt-get -y install zip bazel-6.5.0
22+
run: |
23+
sudo apt install apt-transport-https curl gnupg gcc-11 g++-11 -y
24+
curl -fsSL https://bazel.build/bazel-release.pub.gpg | gpg --dearmor >bazel-archive-keyring.gpg
25+
sudo mv bazel-archive-keyring.gpg /usr/share/keyrings
26+
echo "deb [arch=amd64 signed-by=/usr/share/keyrings/bazel-archive-keyring.gpg] https://storage.googleapis.com/bazel-apt stable jdk1.8" | sudo tee /etc/apt/sources.list.d/bazel.list
27+
sudo apt update
28+
sudo apt-get -y install zip bazel-6.5.0
2629
2730
- name: Clone the TensorFlow repository
2831
run: git clone https://github.com/tensorflow/tensorflow

.github/workflows/build-x86_64-generic-noble.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
name: Build-x86_64-Linux-Generic-Noble
22
on:
33
workflow_dispatch:
4-
push:
5-
branches:
6-
- main
74
pull_request:
85
branches:
96
- main

0 commit comments

Comments
 (0)